• Resolved carlsandburg

    (@carlsandburg)


    I’ve been trying to change opacity in the .caption-wrap from .7 to 1.0 for about an hour now. If I use Inspect, and change opacity to 1.0 like below it works (I get a black background). So I copy this css to Custom CSS Manager, save it…nothing. I can’t figure it out. anybody?

    .metaslider .caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: black;
    color: white;
    opacity: 1.0;
    margin: 0;
    display: block;
    width: 100%;
    line-height: 1.4em;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • matchalabs

    (@matchalabs)

    Hi there,

    Do you have a link to the slider?

    It might be that the theme CSS is overriding the styling.

    Thanks,
    Dave

    Thread Starter carlsandburg

    (@carlsandburg)

    Thanks for responding. I finally was able to get it to work thru trial and error.

    this works.
    div.metaslider .caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: black;
    color: white;
    opacity: 1.0;
    margin: 0;
    display: block;
    width: 100%;
    line-height: 1.4em;
    }

    this doesn’t for some reason.
    .caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: black;
    color: white;
    opacity: 1.0;
    margin: 0;
    display: block;
    width: 100%;
    line-height: 1.4em;
    }

    Thread Starter carlsandburg

    (@carlsandburg)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘caption-wrap opacity’ is closed to new replies.