Remove a space (top menu)

Hello,

I would like to remove this space in my top menu here :

page : http://dev.leadcreation.com.au

How I can do that ?

Thank you !

Do you mean the white space above the heading? If so, you could remove some of the space by removing the line in red below (around line 867 in style.css):

.entry-title {
  clear: both;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5em;
  padding-bottom: 0.3em;
  [COLOR="#FF0000"]padding-top: 15px;[/COLOR]
}

Euh no…it’s the transparent space in the scroll-down top menu

Between “Ressources” and “White paper”

Thank you for your help !

O, have you changed that image? I’m sure there wasn’t a dropdown there when you first posted it. :slight_smile:

You could start by removing the lines in red below:

#access ul ul {
  float: left;
  left: 0;
  margin: [COLOR="#FF0000"]15px [/COLOR]0 0;
  position: absolute;
  [COLOR="#FF0000"]top: 3.333em;[/COLOR]
  width: 188px;
  z-index: 99999;
}

No I haven’t change the image lol…

The problem is now resolved. Thank you !

The last problem is the third line in the menu. As you can see the line is cut at the bottom

How I can change that ?

THANK YOU !!

Dang, I can’t believe I didn’t see that. I sure it wasn’t there … :lol:

The last problem is the third line in the menu. As you can see the line is cut at the bottom

It looks fine for me in FF, but different browsers size text differently. It would be better to remove the fixed height from here to allow text to grow:

#access li {
  float: left;
  font-size: 18px;
  [COLOR="#FF0000"]height: 30px;[/COLOR]
  position: relative;
  z-index: 50;
}

To prevent gaps appearing, you’ll also need to get rid of the margin here:

#access ul ul a {
  border-bottom: 1px dotted #DDDDDD;
  box-shadow: 2px 2px 2px 1px #888888;
  font-size: 13px;
  font-weight: normal;
  line-height: 1em;
  margin-right: 5px;
  [COLOR="#FF0000"]margin-top: 7px;[/COLOR]
  padding: 10px;
  width: 168px;
}

It’s looks very good now !

Thank you very much ralph.m !! :wink:

Great! Glad that helped, and thanks for the feedback. :slight_smile: