By snsace on
I have noticed that the FORUM and even RECENT POSTS looks different in firefox vs. IE. In Firefox everything looks normal but in IE the lines between forum threads are missing. I have noticed this even in Garland and Bluemarine. I have tested in both IE 6 and 7.
Is there something I can check in my theme that controls this. It must be something in css that doesn't work in IE. It's strange that
even default drupal themes do this as well.
Thanks for any suggestions.
Comments
If you inspect your page
If you inspect your page with Firefox/Firebug, you'll see that the border is applied to the
<tr>element. Unfortunately, IE does not support borders on a<tr>, only on a<td>.I've read somewhere that
td { display: block }would solve the problem, but you would have to try that out.Thanks, I added this to the
Thanks,
I added this to the bottom of my css file and it worked:
Cool!
Thanks for posting solution. I use it in Drupal 6 and it works. I spent some time to get it to work. But then i found this post and the problem was solved.