jimtron 0 Report post Posted September 12, 2011 I've tried to figure this out using Firebug, but it's over my head. I'm using PlatformPro, and want my menus/nav on the right instead of the left. I assume I can do this with CSS in the custom code box, but not sure exactly how to proceed. I'd like all the menus to be right-justified. Here's my site: http://www.peerhere.com/test Share this post Link to post Share on other sites
antonella 1 Report post Posted September 12, 2011 Try adding this to your custom css: ul.sf-menu li { float: right; } It's a matter of floating right rather than left. (I found this code in the superfish.css). Share this post Link to post Share on other sites
kastelic 6 Report post Posted September 12, 2011 Hello, try this: [code] ul.sf-menu li { float:right } [/code] Edit: beat me to it! ;) Share this post Link to post Share on other sites
jimtron 0 Report post Posted September 12, 2011 That was easy! Thanks to both of you. Share this post Link to post Share on other sites