'if IE 6' to work for all versions

I've just opened up your site in IE ... and I see the problem you're having.

Now I understand your problem - it's because you haven't specific dimensions to your tables.

Code:
<td class="column-1"><center><a href="http://kredittkortsiden.net/365-privat-mastercard"><img src="http://kredittkortsiden.net/wp-content/uploads/2010/07/365Direkte.jpg" alt="" title="365 Privat" width="80" height="51" class="alignnone size-full wp-image-206" /></a></center></td><td class="column-2"><center><a href="http://kredittkortsiden.net/365-privat-mastercard">365 Privat<br /> 
Mastercard</a></center></td>

... you have set dimensions to your images, but not the tables themselves. It's going to be quite tedious going through all of them, but unfortunately that's the wanker IE is!
 
I`ve got all the time in the world! :) I lose money with the table looking like this, so I don`t mind.

I must set the dimensions for each column, or is it more to it?
 
Hi there,

I had a look at your site in IE 6. To me it looks ok. You might want to put some padding on #content.

Also you might want to set a pixel width on #content instead of a percentage as if you make the screen too small the table gets cut off.

If you cant get
Code:
<!--[if lte IE 6]>
to work you can do some quick and dirty IE Hacks.

IE6: _ before the property
Code:
eg: _color: #ffffff;
IE7: * before the property
Code:
eg: *color: #000000;
IE8: \9 before ;
Code:
eg: color: #CECECE\9;
My Suggestion is to forget about IE6 it counts for only like 7%. Look on W3schools

I usually just use this ie6update, its a script, just google ie6update (I can't post links :( )

But if you have to have IE i guess you could just try the hacks?

Instead of putting a class on each TD to style the columns you can also do something like this:
Code:
<table class="test">
<col class="col1">
<col class="col2">
<tbody><tr>
    <td>Column1</td>
    <td>Column2</td>
</tr>
<tr>
    <td>Column1</td>
    <td>Column3</td>
</tr>
</tbody></table>
This will let you style each column alot easier. But with this any style on a cell or row will overule and style on the column.

Hope this helps in some way.
 
Last edited:
I find #content 51 different places... Which one(s) should I edit?

What will those hacks do?
The only reason I mentioned IE6 is because the css is called ie6.css. It doesn`t really matter what it`s called as long as it works with all versions of IE.

Where do I find that table coding? I use WP-table Reloaded, and it`s got like 47 different scripts I can edit..

Haha I feel like such a noob! But I don`t usually do this; I mostly work with SEO.

Yes it helps a lot :) (though I have no idea where to find the things you talk about)
 
Back
Top