PDA

View Full Version : Moving the nav submenu links and advanced search link down slightly


Jain Farstrider
02-04-2014, 02:31 PM
I have been trying to find a navbar submenu link equivalent of the top link and search box css in additional css as below

.toplinks {top: 7px; right: 0px; z-index: 10;}

.globalsearch {
right: 28px; top: 5px;
}

Only thing I can find for submenu links is drop lists, adding in a link and all that or the article talks about the navbar tabs and so on.

I just need to move it down a bit as you can see in the attachment that the links are a little too close to the line above it.

Tried .navlinks, .nav.li, and so on to get it to work.

Seven Skins
02-04-2014, 03:17 PM
Try to add one of the CSS below in additional.css and adjust the values accordingly.

.navtabs ul {
top: 26px;
}

.navtabs ul {
padding-top: 5px;
}

Jain Farstrider
02-04-2014, 08:32 PM
Thank you Seven Skins.

That was exactly what I needed, would never have thought that it would end with an "ul".