Customise Logo Position

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
dantanie
User
Posts: 70

Customise Logo Position

Post by dantanie »

Hi Please, I have the official Horizontal Extension.

I would like to have the Menu Items appear before the logo.
Currently, the logo is showing first before menu items.

Please can someone assist me to change position to far right

Thank you


mobhar
User
Posts: 11703

Post by mobhar »

Consider that there are three sections in the header for horizontal menu; navbar-header, ewMenu, and navbar-custom-menu. If you move the logo to the right most, then the navbar-custom-menu will be placed in which position?


mobhar
User
Posts: 11703

Post by mobhar »

If you want to obviously move the logo from left to far right, then simply put the following jQuery code in "Startup Script" under "Client Scripts" -> "Global" -> "Pages with header/footer":

$(document).ready(function(){
$('div .navbar-header').css('float', 'right');
});


dantanie
User
Posts: 70

Post by dantanie »

Thank you for the help. That really works fine for me


Post Reply