elay 0 Report post Posted January 12, 2011 Hi how can i remove the lightgrey underlay on top Navi Menue? thanks Share this post Link to post Share on other sites
Kate 3 Report post Posted January 12, 2011 @S??kr?? Do you have a link to your site, please? You'll need to target the navigation and/or navigation anchor tags, setting their background to "none", or the desired color/image. Share this post Link to post Share on other sites
elay 0 Report post Posted January 12, 2011 Hi the Link is www.theaot.de Share this post Link to post Share on other sites
moggy 0 Report post Posted January 12, 2011 I removed #nav_row.main_nav , .main_nav ul.sf-menu ul li{ border-bottom: 1px solid #E9E9E9; } from theme.css and it seems to have got rid of my line Share this post Link to post Share on other sites
elay 0 Report post Posted January 12, 2011 it only have effect for the Line under the menue for me. I need to remove the grey undlay Share this post Link to post Share on other sites
moggy 0 Report post Posted January 12, 2011 oh sorry you mean round the whole box? if so have a look in the theme.css for /* Box Color - Primary Elements */ /* Box Color - Secondary Elements */ the menu's are mentioned within there so just remove them and all should be fine, ive done it on mine too. Share this post Link to post Share on other sites
elay 0 Report post Posted January 12, 2011 Hi thanks is there is a way to do it under custom code section ? Then i exactelly know what i have change for later customization. thanks Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 13, 2011 Yes, instead of deleting out the code simply copy it to Custom CSS and then change the code like change `1px` to `0px` or `#E9E9E9` to `transparent`. Thanks, Bryan Share this post Link to post Share on other sites
elay 0 Report post Posted January 13, 2011 anyway any idea how remove the underlay??? maybe someone have a code to insert into custom code to remove underlay. thanks www.cengil.com www.lightboxhd.com Share this post Link to post Share on other sites
Kate 3 Report post Posted January 13, 2011 Hey - I'm thinking you mean the gray beneath the nav links, correct? Try this: #primary-nav a{background:none;} And, if you want to hide the background on hover, too: #primary-nav li:hover{background:none !important;} Share this post Link to post Share on other sites
elay 0 Report post Posted January 13, 2011 This is correct. Thanks Works Share this post Link to post Share on other sites