Hi Everyone, I'm having a hard time with an unordered list displaying properly in IE7. The HTML/CSS below works fine in FF3+ and IE8, but in IE7 the bullets are moved left. I can move them right, but then they're too right in IE8/FF3.
This div is inside of a container DIV with two other DIVs lined up in columns:
The following is the CSS for the relevant items:HTML Code:<div id="content-right" style="display: inline;"> <p>List Description Here</p> <ul class="myulclass"> <li>Item #1</li> <li>Item #2</li> <li>Item #3</li> <li>Item #4</li> <li>Item #5</li> <li>Item #6</li> <li>Item #7</li> </ul> </div>
Help appreciated :-)Code:.main_content { display: block; border:0 solid #cacce1; border-width:0 1px; padding: 4px; background:#cacce1; color:#000000; overflow: hidden; } #content-right { width: 225px; float: left; padding-left: 7px; padding-right: 3px; min-height: 300px; border-left: 1px solid #d5d7ec; } myulclass.hours { list-style-type: none; padding-left: 3px; } myulclass.hours li { padding-left: 15px; font-size: 13px; background-image: url('circle.png'); background-repeat: no-repeat; background-position: 0 8px; font-size: 12px; line-height: 20px; }




Bookmarks