On 4/19/06, RKN Studio <[EMAIL PROTECTED]> wrote:
> Why is it that IE wraps text in bullets to align with the bullet and
> not the text?  How can I fix that for IE?
>
> example: http://www.rknstudio.com/sites/GWR/about.html
>
> Thanks,
> Ron
> www.rknstudio.com
>
>


Ron,

A couple of things to fix...

1. Looks like you forgot to wrap the offending list in <ul> tags. Do that first.
2. You're defining your <ul> and <li> tags in your stylesheet to
accomodate your menu on the left side of the page. That's fine, but
the list in the main body is inheriting those styles.

Try adding a rule to specify the list in the main body like this:
div#main-list ul {
  list-style-type: disc;
  padding: 1em;
  width: auto;
}

That ought to clear up your problem.

You might also consider adding greater specificity to your menu list,
since it does special, non-normal list stuff. It looks like it's
wrapped in a nice div id="left". You could prepend all of your
left-menu list rules with div#left, and that'd likely clear up the
problem too.

Cheers,

-pete

PS. This is my first post to the list. I hope there'll be more to come.

--
Pete Stuart, Seattle WA
Design Engineer, Trumba Corporation, www.trumba.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to