Results 1 to 3 of 3

Thread: horizontal list

  1. #1
    Member sudhakararaog's Avatar
    Join Date
    Sep 2009
    Posts
    224

    Default horizontal list 29 Mar 2010 @ 09.59

    hi

    please look at this link

    List

    in the case of the 1st list

    what the moves moves over the links a repeating grey background image appears however this background appears completely only for the 1st link i want that repeating background to appear for the remaining links as well to the complete width of the individual links as of now for the remaining links on the left side the background image is not appearing i want the background to appear on the left side of the text


    in the 2nd list

    the height of the containing div is 53px and i would like the list items to be within this 53px height as of now when the mouse moves over Facilities and Activities link the repeating background image appears completely for this link and not for the other links which is what i want for the remaining links

    can anyone advice how i can change the list code to correct both list1 and list2

    thanks
      Reply With Quote

  2. #2
    Administrator Frinkky's Avatar
    Join Date
    Dec 2008
    Posts
    1,817
    Blog Entries
    1

    Default 30 Mar 2010 @ 20.07

    If you look at the 1st list, the first list item does not appear completely. The left side is shear with the text - you appear to need to adjust margin or padding for your li's. I see the left padding is 0 at the moment.

    As for list 2, add height:33px to #list2 ul li a. 33px + 10px padding which you have equals 43px, the height of the parent.
      Reply With Quote

  3. #3
    Whacked shinyshadow's Avatar
    Join Date
    Dec 2008
    Posts
    125

    Default 31 Mar 2010 @ 07.30

    Code:
    #list1 ul li{
      margin: 0 0px 0 0px;
    }
    
    #list1 ul li a {
      padding: 10px 20px 12px 20px;
    }
    
    #list2 ul li a{
    height: 33px;
    }
    Last edited by shinyshadow; 31 Mar 2010 at @ 07.34.
      Reply With Quote

Similar Threads

  1. horizontal list
    By sudhakararaog in forum HTML & CSS
    Replies: 2
    Last Post: 7 May 2010, @ 05.24
  2. horizontal list
    By sudhakararaog in forum HTML & CSS
    Replies: 1
    Last Post: 28 Apr 2010, @ 08.07
  3. horizontal list
    By sudhakararaog in forum HTML & CSS
    Replies: 6
    Last Post: 14 Apr 2010, @ 05.08
  4. horizontal list
    By sudhakararaog in forum HTML & CSS
    Replies: 1
    Last Post: 2 Jan 2010, @ 09.48
  5. horizontal list
    By sudhakararaog in forum HTML & CSS
    Replies: 0
    Last Post: 26 Dec 2009, @ 04.55

Tags for this Thread

Posting Permissions

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