IE List Block Problems

This is a discussion on "IE List Block Problems" within the Web Page Design section. This forum, and the thread "IE List Block Problems are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Sep 9th, 2007, 11:17
New Member
Join Date: Sep 2007
Location: London
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Question IE List Block Problems

Problem Website: www.ultimategripstrength.com

Hello Everyone!

I have a problem with some list block positioning in IE. As you can see the second line within the list block does not follow the padding properties, making it stick out slightly.

The list block should also change color when rolled over, works in firefox but not in IE.

Here's the CSS:
Code: Select all
#Container #Header #NavBar {
    height: 225px;
    width: 150px;
    background-color: #333333;
    font-size: 14px;
    color: #E3FFCB;
    float: left;
    text-align: left;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding-top: 5px;
}
#Container #Header #NavBar ul {
    display: inline;
    text-align: left;
    list-style-type: none;
    vertical-align: middle;
}
#Container #Header #NavBar li {
    display: block;
    padding-bottom: 8px;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
}
#Container #Header #NavBar li:hover {
    background-color: #515151;
}

#Container #Header #NavBar a {
    color: #E3FFE3;
    text-decoration: none;
}
#Container #Header #NavBar a:hover {
    font-weight: normal;
    color: #FFFFFF;

Best Regards
Jason

Last edited by karinne; Sep 10th, 2007 at 13:20. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Sep 9th, 2007, 14:19
alexgeek's Avatar
Moderator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,812
Blog Entries: 9
Thanks: 2
Thanked 2 Times in 2 Posts
Re: IE List Block Problems

have you tried making the container wider?
it may just not fit.
i'm not really sure though.
what you should do is add the .htc file so that the hover effect works in IE.
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Sep 9th, 2007, 16:21
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: IE List Block Problems

I would delete this code
Code: Select all
 #Container #Header #NavBar li:hover {
    background-color: #515151;
}
Then I'd change this
Code: Select all
 #Container #Header #NavBar a:hover {
    font-weight: normal;
    color: #FFFFFF;
to this

Code: Select all
#Container #Header #NavBar a:hover {
     font-weight: normal;
     color: #FFFFFF;
    background-color: #515151;
}
I don't have the answer to the list block issue.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
list block, padding, roll over

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Using a list for navigation, can you center a list? tonyb Web Page Design 4 May 9th, 2008 16:26
2 Drop down list - auto select depending on choice from first list ciaranleeper JavaScript Forum 0 Mar 26th, 2008 10:38
Spacing between list items incorrect when span tag is used in a list item... MikeTheVike Web Page Design 5 Apr 18th, 2007 01:52
Problems floating a list, as well as some other issues! blizeH Web Page Design 7 Oct 14th, 2006 20:13


All times are GMT. The time now is 23:20.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42