Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Move navigation in header WordPress

  • SOLVED

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.

Answers (2)

2010-10-13

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.

2010-10-13

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;
}