Here's the site: http://www.wandklaw.com/
I want the top menu to ride lower and be aligned left.
Right now it overlaps with the logo graphic.
Maor Barazany answers:
In your <strong>screen.css</strong> file, at about line # 1534, instead -
#navigation {
bottom:0;
height:60px;
position:absolute;
right:-15px;
}
put this -
navigation {
bottom:0;
height:40px;
position:absolute;
left:-10px;
}
Clay Butler comments:
Close but it seems the problem now is the white area. No matter how I adjust the size of it, the logo and menu is always relative to the bottom. Got to go pick up my daughter now.
Maor Barazany comments:
Instead of the
bottom:-20px !important;
that you put there, you may put
top:80px !important;
and it will be relative to the top.
Pippin Williamson answers:
Add this to your style.css through the WordPress theme editor:
#navigation {
bottom: -10px!important; // adjust for how low you want it.
left: 0!important;
}