• Resolved nohler

    (@nohler)


    theme version 1.2

    trying to change this css

    @media (min-width: 1200px)
    .carousel-caption {
    top: 35%;
    }

    to this:

    @media (min-width: 1200px)
    .carousel-caption {
    top: 25%;
    }

    I’m just pasting it into the css input box in the ‘Appearance’ -> ‘Theme Options’ -> ‘General Options’ -> ‘Custom CSS’

    When i reload the site, the changes won’t show. All my other css changes show.

Viewing 3 replies - 1 through 3 (of 3 total)
  • have you tried…

    @media (min-width: 1200px)
    .carousel-caption {
    top: 25% !important;
    }

    probably have, but simple things sometimes are missed.

    You also need to wrap the rules in the @media query in brackets:

    @media (min-width: 1200px) {
      .carousel-caption {
        top: 25%;
      }
    }
    Thread Starter nohler

    (@nohler)

    Stephen,
    That was totally it. I totally forgot about the extra set of curly braces ‘{‘ .

    Thanks!

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

The topic ‘Slider CSS Hack?’ is closed to new replies.