XF 1.2 Navigation 100%

TsinJu

Well-known member
I want to change the Navigations Background to 100% (where the publicTabs/visitorTabs and tabLinks are in, still want to keep the responive option) but not sure if i use the correct class/id for it.

This is how i made it
#navigation {
margin: 0 auto;
padding: 0;
width: 100%;
 
Yes, its correct, but I wouldn't set width to 100% and margin to "0 auto". Instead its better to reset values
Code:
#navigation { margin: 0; padding: 0; width: auto; max-width: none; }
 
Top Bottom