mickradford 0 Report post Posted March 19, 2011 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 6 Report post Posted March 19, 2011 #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 6 Report post Posted March 19, 2011 #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 0 Report post Posted March 19, 2011 Excellent! Thanks so much Jimmy - working it in now. Share this post Link to post Share on other sites
mickradford 0 Report post Posted March 20, 2011 Worked beautifully - thanks again! Share this post Link to post Share on other sites