Xenthal

Registered
I was wondering, however, how i can get the logo and navtab seperated in the header, i managed to do it in the previous version but for some reason i cant (remember) manage to do it now:
(logo left alignment, navtab right)
 

Attachments

  • 2016-03-16_20-09-56.png
    2016-03-16_20-09-56.png
    312.1 KB · Views: 37
So with the new update there's a little way of shifting the logo to the left side. Basically we'll be shifting the logo left using CSS, something like this in extra.css should work for you:

Code:
@media (min-width:1300px)
{
   .navTab.xbNavLogo { position: absolute; left: 0px;}
}

Then you may want to float your navigation tabs right:

Style Properties -> [XB] Header and Navigation -> Public Tabs -> add in the misc box:

Code:
float: right;
 
Last edited:
So with the new update there's a little way of shifting the logo to the left side. Basically we'll be shifting the logo left using CSS, something like this in extra.css should work for you:

Code:
@media (min-width:1300px)
{
   .navTab.xbNavLogo { position: absolute; left: 0px;}
}

that worked brilliantly, thanks alot
 
Uhm, previous to 1.5.6 we had the logo on the right side, navigation on the left. I can't remember exactly how that was done, was it FragZone feature?

It was and with various testing it didn't work properly in all situations due to the XF navigation. You can still achieve it, with the user navigation up in the moderator bar->

[XB] Header and navigation -> enable user bar

Then in extra.css:

Code:
@media (min-width:1300px)
{
   .navTab.xbNavLogo { position: absolute; right: 0px;}
}
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back