Header Modification

Dynamic

Well-known member
Licensed customer
Hi everyone,

Is it possible to switch the links in the header, and the links on the right of it around?

So, Home - Forums - Members - Help Username - Alerts - Logout

I would like it to look like

Username - Alerts - Logout Home - Forums - Members - Help

Any help is appreciated.

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

Add this code:

Code:
.navTabs .publicTabs
{
	float: right;
}

.navTabs .visitorTabs
{
	float: left;
}
 
Back
Top Bottom