Style Move subnav above nav

Junior

Well-known member
Just like the title says, I want to move my sub nav above my navigation. I'm messing with things currently but could use some help. If anyone knows what needs to be done, I'd appreciate the help.
 
Just like the title says, I want to move my sub nav above my navigation. I'm messing with things currently but could use some help. If anyone knows what needs to be done, I'd appreciate the help.

Not sure how in-depth you have to go but...

The subnav has absolute positiong so you can throw this into extra.css to adjust where it sits.

Code:
html .navTabs .navTab.selected .tabLinks
{
top: -50px;
}

Of course you'll have to toy with the # a bit and possibly apply other styling to that.
 
Top Bottom