Okay
  Public Ticket #362380
Add drop-shadow to slider header text.
Closed

Comments

  • Brian started the conversation

    I'd like to add a drop shadow to the Nivo Slider on my home page (not the home slider). Can you provide the CSS for that? Thx!

  •  8,848


    ThemeNectar Support Team 

  • Brian replied

    Actually I was looking for 1px black text drop shadow for the heading & caption. Let me know, thx!

  • Brian replied

    This works:

    #featured article .post-title h2 span {
    background: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: 1px 1px #000000;
    }

    for this page:

    http://leadrabbit.com/home-ultra-extended-old/

    but I can't figure it out for the Nectar slider on the home page.

    Thanks in advance for any help.

  •  8,848
    Tahir replied

    Hey Again!

    Add this into the Custom CSS box located in your Salient Options panel :
    .swiper-slide .content h2 {
        background: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: 5px 1px #000000 !important;
    }
    .swiper-slide .content p {
        background: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: 5px 1px #000000 !important;
    }
    
    It seems to be working fine .
    Thanks 


    ThemeNectar Support Team 

  • Brian replied

    That worked great, thank you! But how can I apply it to the home page button text? 

  •  8,848
    Tahir replied

    Hey Again!

    Add this into the Custom CSS box located in your Salient Options panel :
    #boxed #featured article .post-title > a {
        /* background: none !important; */
        /* box-shadow: none !important; */
        /* color: #ffffff !important; */
        text-shadow: 5px 1px #000000 !important;
    }
    
    Thanks 


    ThemeNectar Support Team 

  • Brian replied

    Thanks!