Title: Slider css Styling
Last modified: August 20, 2016

---

# Slider css Styling

 *  Resolved [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/)
 * Hi,
 * I’m trying to figure out why I can’t seem to make the text at the side of the
   sidebar turn blue when its selected with the yellow background.
 * [http://goo.gl/nbCCu](http://goo.gl/nbCCu)
 * I’ve tried all combinations :hover :active :current
 * Can’t seem to get it to work, can anyone maybe point me in the right direction.
 * Many Thanks

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

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484318)
 * Remember to provide a URL to the webpage for context.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484319)
 * Did this work;
 *     ```
       #home-blue:hover {
        background: yellow;
        color: #008fff;
       }
       ```
   
 * ?
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484328)
 * Thanks for your input andrew, But know this doesn’t seem to work either.
 * I’m not even to sure what that div targets. I think its something inside the 
   javascript i have to change, Really not to sure on this one.
 * Thanks
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484329)
 * Danny, did you clear your browser’s cache after making that CSS change?
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484331)
 * Yea i did, using ctrl and f5.
 * It still highlights them when i hover over them, but not when the yellow background
   goes over them.
 * Is it something to do with it been rotated through the slides in the javascript
   and that actual div is selected as such, just an image appears over it.
 * Thanks
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484334)
 * The text underneath the sidebar;
 * > We aim to build confidence and self-esteem in your child. To find out more 
   > about Butterflies Pre-school and Priory Kid’s Club, please call us on 01482
   > 421 800
 * Am I looking at the wrong place?
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484338)
 * Yeah, this is the wrong piece. I’m talking about the slider at the top of the
   page. underneath the navigation.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484339)
 * Have you tried something like;
 *     ```
       .current .ls-descr,
       .current h2 {
        color: #008fff;
       }
       ```
   
 * Are you using a browser developer tool like Firebug?
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484340)
 * I’m using google chrome, the inspect element on that.
 * I’ll try that.
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484341)
 * When I click it, it seems to change to blue but still doesn’t when the background
   comes over.
 * What exactly does the .current selector do?
 * Thanks?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484342)
 * [http://snag.gy/ORN96.jpg](http://snag.gy/ORN96.jpg)
 * I don’t want to repeat myself, but Firebug will help you with these exploratory
   CSS queries.
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484343)
 * wait it does work!
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484346)
 * now how would i target the top title.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484348)
 * Use more-specific selectors, such as those exposed by Firebug [http://snag.gy/QwNMi.jpg](http://snag.gy/QwNMi.jpg)
 * E.g
 *     ```
       .current div#feature_list h2 {
        color: #008fff;
       }
       ```
   
 *  Thread Starter [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * (@danny_getextra)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484350)
 * I appreciate the help Andrew, I’ve made the changes now the other h2 tags are
   effected.
 * How strange.

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

The topic ‘Slider css Styling’ is closed to new replies.

## Tags

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

 * 15 replies
 * 2 participants
 * Last reply from: [danny_getextra](https://wordpress.org/support/users/danny_getextra/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/slider-css-styling/#post-3484350)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
