Stupid CSS problem

iosoft

PC enthusiast since MS DOS 5
Skilled
I am having a stupid CSS problem.

FF is showing perfect but not IE :(

ea6b055adc.jpg


I want the TEXT should stay close and tight to the TABLE just like in FF.
In IE, there are hell lot of space !!

CODE -
Code:
</table>
<div style="padding:0;margin:0 0 0 419px;font-size:8px;">Powered by GGGGGG</div>
 
It may have to do with padding or margins on your table not your div layer.... show me the code for the table and any css styles for the table.
 
hanzy said:
remove "gigahertz" and just keep powered by n check....

Done the TEST. Same problem.

PiXeLpUsHeR said:
It may have to do with padding or margins on your table not your div layer.... show me the code for the table and any css styles for the table.

Here is the CODE -
Code:
<table border="0" cellpadding="0" cellspacing="0" style="width:500px; height:150px; padding:0; margin:0; background-color: #001c37; border: 1px solid #001c37;" ID="scoretable"><TR>
<TD WIDTH="150">1</TD>
<TD>2</TD><TD></TD></TR>
</TABLE><div style=" padding:0;margin:0 0 0 419px;border:0;border-spacing:0;height:10px;font-size:8px;">Powered by GGGG</div>
 
The problem solved by changing that last DIV to SPAN :hap2:
Don't ask why :bleh:
 
Great.. as long as it works :)

I really f**!%ing hate coding for Internet Explorer :p

On one web site I had to make a separate stylesheet page just for IE with workarounds....:mad:
 
Back
Top