Link to home
Start Free TrialLog in
Avatar of Amanda Watson
Amanda WatsonFlag for Australia

asked on

I have an easy one!! Help raising a drop down menu up a few pixels

Hi There,  
I am wasting too much time trying to move the drop down menu of the main menu on this site
http://jacintarose.gcwebsites.com.au
You will see on any hover on the parent menu, that the drop down is just 20-40px too far away, but I can't find where to shift it?
Can anyone help
ASKER CERTIFIED SOLUTION
Avatar of Edwin Hoffer
Edwin Hoffer
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Julian Hansen
Cannot see a drop down on that link.
Might be he deleted the dropdown menu @julianH
Avatar of Amanda Watson

ASKER

Hey there,
It doesn't appear to have work Edwin....?
I added in a drop down after I changed the menu for testing.............
A
Hang on I think it looks ok Edwin....maybe a bit higher?
great, thank you
You are welcome
It looks like the drop down is 1px too low - there is a bit of background showing through.

Try changing the top to 14px in the following style
Line 272
.navbar-header {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  position: relative;
  top: 14px;
}

Open in new window

Or change the padding from 33px to 32px in the following style
Line 277
.navbar-nav > li > a {
  padding: 32px 14px;
}

Open in new window