jennsoer
Member
Posted 3 years ago #
Hi, for my site http://little-hypotenuse.com If you scroll down a bit, you will see links on the right to each individual entry. In firefox, they are listed nicely with a right align, but in IE they are all messed up, almost seeming blockquotish. I don't understand! I've been trying to get the IE one to look like firefox for awhile, but I can't figure it out. Does anyone have any ideas why it is doing that or how I can stop it?? Thanks!
Jenn
The way I like to go about this is to serve IE a stylesheet all it's own. Start a new css doc and name it "ie.css". Then, start all css rules with "* html" (no quotes of course). For example:
* html a {
color:#660000;
}
This will only be read by IE6 and earlier. A great site to learn more about this type of stuff: http://www.positioniseverything.net/
BTW, I serve this stylesheet by importing it. In your style.css you would add this at the end:
@import url(ie.css);
@chaaban, I unspammed your comment made here.. ;) I also sent an email to the wp-forums email list about it again.. Hopefully this problem will be solved for good, well..hopefully soon.. ;)
spencerp