Title: Slider CSS Hack?
Last modified: August 22, 2016

---

# Slider CSS Hack?

 *  Resolved [nohler](https://wordpress.org/support/users/nohler/)
 * (@nohler)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/slider-css-hack/)
 * 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)

 *  [MrYawn](https://wordpress.org/support/users/mryawn/)
 * (@mryawn)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/slider-css-hack/#post-5380499)
 * have you tried…
 *     ```
       @media (min-width: 1200px)
       .carousel-caption {
       top: 25% !important;
       }
       ```
   
 * probably have, but simple things sometimes are missed.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/slider-css-hack/#post-5380504)
 * You also need to wrap the rules in the `@media` query in brackets:
 *     ```
       @media (min-width: 1200px) {
         .carousel-caption {
           top: 25%;
         }
       }
       ```
   
 *  Thread Starter [nohler](https://wordpress.org/support/users/nohler/)
 * (@nohler)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/slider-css-hack/#post-5380613)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/enigma/7.73/screenshot.png)
 * Enigma
 * [Support Threads](https://wordpress.org/support/theme/enigma/)
 * [Active Topics](https://wordpress.org/support/theme/enigma/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/enigma/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/enigma/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 3 replies
 * 3 participants
 * Last reply from: [nohler](https://wordpress.org/support/users/nohler/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/slider-css-hack/#post-5380613)
 * Status: resolved