XF 1.3 How to remove this white stuff?

Stockwalker

Active member
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
    untittlaaaaa.webp
    15.1 KB · Views: 46
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:

Screen shot 2014-06-29 at 1.35.09 PM.webp

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.
 
Top Bottom