Support Forum

Please note that this forum is only available to you in read only mode. In order to contribute to this conversation you will need to renew your subscription.

Move logo to the right of nav

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Is it possible to move the logo to the right of the nav in nebula? The background image my client wants has some business on the left side.

Thanks
  • B Smith's Avatar
  • B Smith
  • 12 Month basic
  • 397 posts
  • 2 Thanks
  • Karma: 0
The administrator has disabled public write access.
It will involve a little bit of css work but do-able...

Create a custom.css file in your root CSS folder (if one is not already there). Add the following into this file;

.row-fluid .span4 {
float: right;
}
.zenright {
float: left;
}
.zenleft {
float: right;
}

Attached is a screen shot of this using Firebug. What we are doing is flipping the left/right floats.

Ed

Nebula.png
  • Ed's Avatar
  • Ed
  • LIfetime Developer - Big Bamboo
  • 1693 posts
  • 45 Thanks
  • Karma: 60
The administrator has disabled public write access.
The following user(s) said Thank You: sarahhumphrey
If your looking to move the logo just to the right of the navs, just add this to your custom.css file;

.row-fluid [class*="span"] {
float: right;
}

Here is a screen shot of the results using Firebug and JBs Live Preview of Nebula


Nebula_02.png
  • Ed's Avatar
  • Ed
  • LIfetime Developer - Big Bamboo
  • 1693 posts
  • 45 Thanks
  • Karma: 60
The administrator has disabled public write access.

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Happy Campers