S Stockwalker Active member Jun 27, 2014 #1 So I removed the sublinks under the navbar, and now this white stuff remains on its place. How can I remove that white bar? THANKS! Attachments untittlaaaaa.webp 15.1 KB · Views: 46
So I removed the sublinks under the navbar, and now this white stuff remains on its place. How can I remove that white bar? THANKS!
Jake Bunce Well-known member Jun 28, 2014 #2 There is some CSS positioning involved here. You want to just remove all secondary nav links? Upvote 0 Downvote
S Stockwalker Active member Jun 29, 2014 #3 Yes, I want to remove all secondary nav links. Upvote 0 Downvote
Jake Bunce Well-known member Jun 29, 2014 #4 I am working with the default style for this... To remove the row of secondary nav links, edit this template: Admin CP -> Appearance -> Templates -> EXTRA.css Add this code: Code: #navigation .pageContent { height: 27px; } #headerMover #headerProxy { height: 77px; } .navTab.selected .tabLinks { display: none; } #QuickSearch { position: absolute; right: 20px; top: -70px; padding-bottom: 5px; } The result: You will notice that I had to move the search box up into the logo area, otherwise it overlaps the breadbox or sidebar. You can play with this CSS in your custom style. Upvote 0 Downvote
I am working with the default style for this... To remove the row of secondary nav links, edit this template: Admin CP -> Appearance -> Templates -> EXTRA.css Add this code: Code: #navigation .pageContent { height: 27px; } #headerMover #headerProxy { height: 77px; } .navTab.selected .tabLinks { display: none; } #QuickSearch { position: absolute; right: 20px; top: -70px; padding-bottom: 5px; } The result: You will notice that I had to move the search box up into the logo area, otherwise it overlaps the breadbox or sidebar. You can play with this CSS in your custom style.