Jump to content
Sign in to follow this  
danielfinn

CSS help: changing feature nav number colors

Recommended Posts

danielfinn

I am wanting to modify some aspects of the feature navigation when it is set to number mode. I have used the following code so far, however, I am struggling to find the correct anchors to change the color of the currently active feature slide. At the moment it is the pagelines default grey on my site.

	/* alter padding of nav box */
	#feature-footer .feature-footer-pad {
	    background-color: transparent;
	    padding-bottom: 0px;
	}
	
	/* alter text colour of nav numbers */
	#feature-footer.numbers a {
	    color: #252727;
	}
	
	/* change background and text color of nav on hover */
	#feature-footer.numbers a:hover {
	    background-color: #f88bf2;
	    color: #ffffff;
	    font-weight:bold;
	    -moz-border-radius: 5px;
	    -webkit-border-radius: 5px;
	    border-radius: 5px;
	}
	
I tried the following code to change the active feature slide, but it did not work
	#feature-footer.numbers a:activeslide
	
and
	#feature-footer.numbers a.activeslide
	

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×