I'd like to lower the position of the menu in order to be 'centered' to the vertical middle axle of the main logo.
Any help is appreciated.
Thanks
brandnav - menu positioning
Started by
oinegue1960
, Mar 30 2012 05:58 PM
2 replies to this topic
#1
Posted 30 March 2012 - 05:58 PM
#2
Posted 30 March 2012 - 07:16 PM
Hi,
You should use Firebug for Firefox or Chrome's element inspection tools.
This should guide you a bit:
You should use Firebug for Firefox or Chrome's element inspection tools.
This should guide you a bit:
#3
Posted 30 March 2012 - 08:26 PM
For all who would need to change the position of the menu in the brandnav:
1) the 'effective' CSS is in brandnav dir (not the main one in pagelines root)
2) the code to customize up to your need is this:
#brandnav .brandnav-nav{
float: right;
margin-left : 20px;
margin-top: 40px;
}
#brandnav li a, #brandnav .nav-special {
display: block;
text-decoration: none;
margin-top: 40px;
}
where you'd use base theme do not change the original CSS in brandnav dir but put the code in base theme CSS.
1) the 'effective' CSS is in brandnav dir (not the main one in pagelines root)
2) the code to customize up to your need is this:
#brandnav .brandnav-nav{
float: right;
margin-left : 20px;
margin-top: 40px;
}
#brandnav li a, #brandnav .nav-special {
display: block;
text-decoration: none;
margin-top: 40px;
}
where you'd use base theme do not change the original CSS in brandnav dir but put the code in base theme CSS.











