Jump to content
Sign in to follow this  
mickradford

Basic(?) navigation CSS help

Recommended Posts

mickradford

Hey guys, I've got a live site that I'm still tweaking michelleleigh.com. Today I'd like to change the navigation a bit. Coding isn't my forte so I figure I could plunk around for 8 hours to get what I'm looking for or one of you outstanding CSS ninja's could knock it out in 8 minutes. If this falls under the umbrella of paid custom work let me know and I'll go that route. What I'm looking for: - Removing the navigation "tab" appearance - Making navigation text normally white and perhaps a gray on hover. (I can tweak the colors) - Reduce the padding between navigation elements - Make the navigation text all upercase (worst case I can do this in the WP Menu tool) (FYI- I'm restructuring the navigation so there won't be any dropdowns) A quick example of what I want can be found here blackberrysmoke.com Any help is appreciated and again, let me know if this is something I need to contract for. Thanks!

Share this post


Link to post
Share on other sites
kastelic
#primary-nav li a {
	text-transform:uppercase;
	background:none;
	color:white;
	padding:10px 6px;
	}
	#primary-nav li a:hover{
	background:none;
	color:#999;
	}
	ul.sf-menu li{background:none;}

Share this post


Link to post
Share on other sites
kastelic
#primary-nav li a {
	text-transform:uppercase;
	background:none;
	color:white;
	padding:10px 6px;
	}
	#primary-nav li a:hover{
	background:none;
	color:#999;
	}
	ul.sf-menu li:hover{background:none;}

Share this post


Link to post
Share on other sites
mickradford

Excellent! Thanks so much Jimmy - working it in now.

Share this post


Link to post
Share on other sites
mickradford

Worked beautifully - thanks again!

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  

×