• Hi Guys,

    Does anyone know a way to add drop shadow to the slider text? The white font doesn’t really show up against my header image. Thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • Would you please provide the link of your site? It help me to address your problems easier.
    Thanks

    Thread Starter kilbourncm

    (@kilbourncm)

    No problem. It’s https://www.thegiftofcoal.com

    Please add the below CSS

    .text-slider .maintitle{
    text-shadow: 3px 4px #FFA500;
    }

    Note: Child theme is recommended to customize theme.
    If you have any query feel free to ask,
    Thanks

    Thread Starter kilbourncm

    (@kilbourncm)

    Forgot to respond to this — that fixed it! Thank you, WEN!

    Where do you put this code?

    That worked great for the maintitle, what code should I input if I want all the text on the header / slider to have drop shadow? Thanks

    Issue for drop shadow on all slider text resolved. Add Code to the custom css drop down in customize.

    .text-slider .maintitle{
    text-shadow: 1px 1px #252525;
    }
    .text-slider .subtitle{
    text-shadow: 1px 1px #252525;

    I still don’t know how to add drop shadow to the site title and menu text though… Anyone??

    Hello there,

    I still don’t know how to add drop shadow to the site title and menu text though…

    Try to apply the following CSS code:

    .site-title a,
    .site-description,
    .mainnav ul li a{
      text-shadow: 1px 1px #252525;
    }

    Thank you Kharis, was searching for this.
    How do i add an opaque box behind the header slider text and subtitle slider text?

    Hello there,

    Try to apply the following CSS code:

    .text-slider{
      background-color: rgba(255,255,255,0.3);
    }

    Adjust the values accordingly.

    R = 255
    G = 255
    B = 255
    A = 0.3

    The A value ranges from 0 to 1. 1 will be solid.

    To know the RGB color values, use this tool https://www.colorspire.com/rgb-color-wheel/.

    Regards,
    Kharis

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Add Dropshadow to the Slider Text?’ is closed to new replies.