Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1312786

    I have a rotating headline on my homepage. The background image is very restless. It is difficult to read. How can I give this heading a “transparent” background? Not across the width but only under the heading. Is that possible?

    THANK YOU !

    #1313055

    Hi Karolina2020,

    Please try adding this CSS code in Enfold > General Styling > Quick CSS:

    .home #av_section_1 h1.av-rotator-container-inner {
        display: inline !important;
    }

    Best regards,
    Nikko

    #1316979

    Hi Nikko,

    Not across the width but only under the heading. Is that possible?
    homepge: liv-room.de

    #1317010

    first : i do not like the big white rectangle when the letters change – then maybe a text-shadow will do the job:

    #top .av-rotator-container-inner {
    	text-shadow: 3px 3px 10px #000 !important;
    }
    
    .av-marked-text .av-rotator-text-single {
    	background-color: transparent !important
    }

    or in additon a little outline with a modern method to add outline ( only IE11 does not support this) – replace the first rule with:

    #top .av-rotator-container-inner{
    	text-shadow: 2px 3px 4px #000 !important;
    	-webkit-text-stroke: 1px black
    }

    if you like it with more browser support – that little trick will do – replace the first rule with:

    #top .av-rotator-container-inner {
    	text-shadow: 3px 3px 5px #000, -2px -2px 0 #000,   2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    }
    #1317045

    Hi Karolina2020,

    Can you try Guenni007’s solution? it should add an outline to the text which helps make it easier to read.
    You can add this code on top of it so it removes the background color as well as the white rectangle that shows up:

    .home #av_section_1 h1.av-rotator-container-inner, 
    .home #av_section_1 h1.av-rotator-container-inner .av-rotator-text-single {
        background-color: transparent !important;
    }


    @Guenni007
    thanks for helping out :)

    Best regards,
    Nikko

    #1317197

    Looks better – if you like to have an alternative –
    try:

    #top .av-rotator-container-inner {
    text-shadow:     
        1px 1px 0 #c7c8ca,
        2px 2px 0 #b1b3b6,
        3px 3px 0 #9d9fa2,
        4px 4px 0 #8a8c8e,
        5px 5px 0 #77787b,
        6px 6px 0 #636466,
        7px 7px 7px #000;
    }

    but then with more letter-spacing

    #1317639

    Thanks for the feedback. :)

    #1317792

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.