XF 1.2 Move Submenu

vozihcs

New member
Hey,
I have a styling question: I want to move my Submenu point "Foren Spion" to the right side.
I tried it with "position: right;" but i dont even know where to place it in my navigation bar css. What du I have to Add to my css? Where do I have to add it? Thank you very much for reading my problem, I am pleased by every answer.

Valentin
upload_2013-12-29_1-30-42.webp
 
Add this code to extra.css

Code:
.navTabs .navTab.selected .tabLinks li:last-child {
float: right;
position: relative;
right: 250px;
}

It will work only if "Foren Spion" is your last element in the sub menu bar.
 
Top Bottom