Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #729699

    hi. how can i apply a shadow to the text here: http://imgur.com/a/WBbrc

    i have shadows at the fullscreen slider text with this code:

    /*Schatten Überschrift Fullscreen slider*/
    #top .avia-fullscreen-slider h2 {
        text-shadow: 1px 1px 7px #000 !important;
    }
    
    /*schatten bei normaltext slider*/
    #top .avia-fullscreen-slider p {
        text-shadow: 1px 1px 7px #000 !important;
    }

    how can i apply this shadow to special heading and normal text inside an color section?

    #729779

    Hey diefleischerei,

    Please try the following in Quick CSS under Enfold->General Styling:

    .home .post-entry-2 .av-special-heading-tag, .home .post-entry-2 .avia_textblock p {
        text-shadow: 2px 2px 2px #000;
    }

    Best regards,
    Rikard

    #730113

    Cool. Thank you. How can i disable the shadow effect here: http://imgur.com/a/AdBdi

    #730227

    Hi,

    Try replacing the previous code I send with this:

    .home .post-entry-2 .av-special-heading-tag {
        text-shadow: 2px 2px 2px #000;
    }

    Best regards,
    Rikard

    #730469

    ok. sorry but it do not work.

    i want normal text here. this work with the new code. i mean text without shadow. http://imgur.com/a/w6aBo

    and i need the shadow effect here: http://imgur.com/a/3pyjp

    #730518

    Hi,

    Copy the text shadow css rule

    text-shadow: 2px 2px 2px #000;

    and paste it in the “pust-top” selector css code I provided in the other ticket.

    So it should look like

    .pust-top {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        text-shadow: 2px 2px 2px #000;
    }

    My bad it’s suppose to be “push-top” and not “pust-top” :P

    Best regards,
    Vinay

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