Change Navigation Height?

karoshio

Active member
Drawing a bit of a blank on how to change the navigation tabs height without it messing up and causing a gap so if anyone can point me in the right direction I'd appreciate it.
 
That causes a gap for me, I adjusted some top property the amount I change it and it was all good. Thank you for the reply nonetheless.

Now if you know where the annoying 1-2px gap is that'd be great :p I forget it everytime.
 
Yeah that's the exact same problem I had. I went back and found my custom style that has that problem and came up with a fix. Try this:

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.navTabs .navTab.selected .tabLinks
{
	top: @headerTabHeight !important;
	height: {xen:calc '@headerTabHeight + 2'}px !important;
}

Let me know if that works for you.
 
That did the trick. I did find another fix but this is more efficient. :p

Now just to find the little 1px blue line in between.



Thanks for the assistance ^


EDIT: Found that line.
 
Top Bottom