August 18th, 2009
| Posted in CSS, Easy Online Portals, HTML | No Comments »
A few days ago, a bug in EasySell appeared in Internet Explorer 8.

Apparently we used max-width (and max-height) on the image in a table ‘td’:
table td img {
max-height: 255px;
max-width: 345px;
}
This piece of code won’t get applied by IE8, so it seems…
But google found the solution right here, thanks to the forum user AsraiLight.
To let IE8 apply the max-width/max-height, you have to use a fixed table layout:
table{
table-layout: fixed;
}
This made it look like it is supposed to:

November 22nd, 2008
| Posted in HTML, Javascript | No Comments »
Disable a html Input box without losing successful-controls with javascript:
<form action="" method="post">
<input type="text" readonly="readonly" onselect="this.blur()"
onfocus="this.blur()" name="SomeTextBox" value=""
style="background-color:lightgrey;cursor:default;">
<input type="submit">
</form>
October 28th, 2008
| Posted in HTML | No Comments »
Override alt tooltip by putting an empty title attribute in the tag
<img alt="something" src="">
becomes
<img title="" alt="something" src="">