Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a horizontal navigation bar made from an unordered list, and each list item has a lot of padding to make it look nice, but the only area that works as a link is the text itself. How can I enable the user to click anywhere in the list item to active the link?

html:

<html>
  <head>
    <link type="text/css" rel="stylesheet" href="/stylesheets/test.css" />
    <link rel="shortcut icon" href="/images/favicon.ico" >
  </head>

  <body>
    <div id="nav">
    <img src="/images/renderedicon.png" alt="Icon" height="57" width="57"/>
      <ul>
        <li><a href="#">One1</a></li>
        <li><a href="#">Two</a></li>
        <li><a href="#">Three</a></li>
        <li><a href="#">Four</a></li>
      </ul>
    </div>
    <div>
      <h2>Heading</h2>
    </div>
  </body>
</html>

css:

#nav {
  background-color: #181818;
  margin: 0px;
  overflow: hidden;
}

#nav img {
  float: left;
  padding: 5px 10px;
  margin-top:auto;
  margin-bottom: auto;
  vertical-align: bottom;
}

#nav ul {
  list-style-type: none;
  margin: 0px;
  background-color: #181818;
  float: left;
}

#nav li {
  display: block;
  float: left; 
  padding: 25px 10px;
}

#nav li:hover {
  background-color: #785442;
}

#nav a {
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
}
share|improve this question

3 Answers

up vote 7 down vote accepted

Don't put padding in the 'li' item. Instead set the anchor tag to display:inline-block; and apply padding to it.

share|improve this answer
3  
Not all versions of IE fully support inline-block (see quirksmode.org/css/display.html). Since li s are already floated, a { display: block } is probably the better choice. – dhabersack Jun 19 '10 at 5:37
display: inline; zoom: 1; in a conditional comment for IE6 and IE7 will replace display: inline-block; though yes, if list items are already floated, display: block; will be OK too – FelipeAls Jun 19 '10 at 6:06

Make the anchor tag contain the padding rather than the li. This way, it will take up all the area.

share|improve this answer
2  
I would also suggest moving the hover state to the anchor as well off of the li for better browser support. – NinjaBomb Jun 19 '10 at 5:40

Define your anchor tag css property as:

{display:block}

Then the anchor will occupy the entire list area, so your click will work in the empty space next to your list.

share|improve this answer
This worked for me. – Buttle Butkus Feb 11 at 8:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.