robbycornish 0 Report post Posted January 25, 2011 What is the CSS to modify the position of the subnav? Here is the line for the main nav: .main_nav {margin-left: 20px;} I tried this for the subnav, but wouldn't work: .main_nav li.children {margin-left: 20px;} I'm just trying to move the subnav over a bit. Here's my site: http://robbycornish.com/wowsite/products/ Thanks! Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 25, 2011 ` #subnav_row #subnav { margin-left: 20px; } ` Share this post Link to post Share on other sites
robbycornish 0 Report post Posted January 26, 2011 That worked! Thanks! I also added : #subnav_row #subnav { margin-left: 25px; margin-top: -25px;} but for some reason the "hit area" for the links are still at the original location (when i added the margin-top), how can i fix that? Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 26, 2011 add this: ` #primary-nav #subnav_row ul { position: relative; z-index: 99999; } ` Share this post Link to post Share on other sites
robbycornish 0 Report post Posted January 26, 2011 YOU ARE THE MAN! thanks! Share this post Link to post Share on other sites