SitePoint Sponsor

User Tag List

Results 1 to 4 of 4

Thread: Problem with ul/li

  1. #1
    SitePoint Zealot
    Join Date
    Sep 2003
    Location
    Michigan
    Posts
    164
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Problem with ul/li

    Hello,

    Here is the page in question http://floridagulfcoastcharters.com/specials.html

    In Firefox the centercontent works but in IE ul list and down will display. Here is the css http://floridagulfcoastcharters.com/css/style.css My style sheet needs cleaning up. The page and CSS validate. Thats a plus.

    I have the the list floating left and right.

    Thank you,

    Bill

  2. #2
    The CSS Clinic is open silver trophybronze trophy
    SitePoint Award Recipient Paul O'B's Avatar
    Join Date
    Jan 2003
    Location
    Hampshire UK
    Posts
    37,771
    Mentioned
    99 Post(s)
    Tagged
    3 Thread(s)
    Hi,

    but in IE ul list and down will display
    I'm probably just being a bit slow today but can you explain what you mean by the above exactly Can you describe the problem and what you want to happen etc.

    I looked in firefox and ie and couldn't see much difference (except for the bullet showing).

    Paul

  3. #3
    The CSS Clinic is open silver trophybronze trophy
    SitePoint Award Recipient Paul O'B's Avatar
    Join Date
    Jan 2003
    Location
    Hampshire UK
    Posts
    37,771
    Mentioned
    99 Post(s)
    Tagged
    3 Thread(s)
    Ahh - i think I see it now.

    Is it the middle h2 text that occasionally disappears. This is ie's peeka boo bug and can be cured in a number of ways but perhaps the easiest is the height:1% hack as follows.

    Code:
     #centercontent {
      background:#80FFFF;
    	margin-left: 149px;
    	margin-right:149px;
      /* border-top:1px solid #000; */
      voice-family: "\"}\"";
      voice-family: inherit;
    	margin-left: 151px;
    	margin-right:151px;
     height:1%;
    }
     html>body #centercontent {
    	 margin-left: 151px;
    	 margin-right:151px;
      height:auto;
      }
    That should cure it for you.

    Paul

  4. #4
    SitePoint Zealot
    Join Date
    Sep 2003
    Location
    Michigan
    Posts
    164
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you Paul, that fixed the problem.

    Best Regards,
    Bill

Bookmarks

Posting Permissions

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