Jump to content

make whole li clickable..


garry

Recommended Posts

so basically, I have an unordered list with categories. Each unordered list has a black circular box background type thing going on and has a link inside it to the category. What I want to do is make that whole box (the <li> item) clickable, as opposed to just the link. Here's the css I'm using.

 

div.block .block_content {
padding:0.5em 0.7em 0pt;
min-height:20px;
}
div.block li {
padding: 6px 0 0.2em 0.8em;
height: 24px;
background: url('../img/catli_bg.gif') no-repeat;
display: block;
}

 

And the html is just a basic unordered list. Can anyone help?

Link to comment
Share on other sites

you will need to edit this to your site a bit i just grabbed it off a project im working on but its what you need as shown here

http://www.lawrenceguide.org/literature/index.php

<div class="nav">	 
   <ul id="home">
           <li><a href="http://www.lawrenceguide.org/index.php" title="about">About</a></li>
   <li><a href="http://www.lawrenceguide.org/contact.php" title="contact">Contact</a></li>
          <li><a href="http://www.lawrenceguide.org/user/index.php" title="Add Link">Add Link</a></li>
   </ul>	
</div>

 


/* left side navigation */

div.nav {
width: 140px;
height: 100%;
float:left;
padding: 0 0 0 0;
margin-bottom: 1em;
font-family: 'Trebuchet MS', 'Lucida Grande',Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
}
div.nav ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
	}

div.nav li {		
margin: 0;width:100%;
	}
div.nav li a {
	display: block;
	padding: 5px 0px 5px 0px;
	text-decoration: none;
	width:100%;
	}
html>body div.nav li a {
	width:100%;
	}


/* end left navigation */

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.