Welcome to Discuss Everything Forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.


 

Tags for this Thread

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    omg00dness
    omg00dness's Avatar
    Guest

    How can I make an HTML list item and its background a link?

    I made a list (<ul>) with css and html. It's simply a navigation bar with no bullets and a background that looks like a button. The text is clickable but the button behind the text (a background image of the list item) is not. I want to make it clickable with the same link the text has. I can use PHP if I need to.

  2. #2
    michael j
    michael j's Avatar
    Guest
    Add <a> tags to the listitems and then use CSS to resize them to the complete area of the listitem.
    Gonna need to turn <a> into a block element though.. as inline elements can't normally have a height.

    example:

    a.menuitem {
    display: block;
    width: 100%;
    height: 100%;
    }
    ....
    ....
    <li><a class="menuitem" href="#">Text</a></li>


    Hope this works for you

 

 

Quick Reply Quick Reply

Click here to log in


In what corner do we have Search box?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. What the html code to make an item appears from left to right?
    By Captain Brandon in forum Discuss HTML
    Replies: 0
    Last Post: 12-24-2011, 03:09 PM
  2. Replies: 0
    Last Post: 02-02-2011, 04:08 AM
  3. Replies: 0
    Last Post: 12-31-2010, 05:33 AM
  4. how can a list of links come out of one link in HTML ?
    By prizerebel in forum Discuss HTML
    Replies: 0
    Last Post: 03-16-2010, 04:35 PM
  5. How can i give a link on Background Images in html?
    By Krishna in forum Discuss HTML
    Replies: 6
    Last Post: 09-18-2009, 10:47 AM

Bookmarks

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •