Reborn Code Freaks
www.rcf-group.com | HeadQuarters
 
Download SectionHelp: Download Section
In our download section you can find 14 programs available for download, total of 18 version files. Newest update was for Simple Address Farmer to version 0.1, uploaded on 16.06.2009. by MeanEYE.

All files are free for download and available to the public.

ShoutboxHelp: Shoutbox
Latest shout:
MeanEYE
01:09:17 29.06.2009.
TD resets TR background-image, IE problem

Recently I had a small request to solve the following problem:
<style>
table tr {
background-image: url(pic.gif);
}
table tr td {
background-image: url(pic_2.gif);
}
</style>
<table>
<tr>
<td>
Some Text
</td>
</tr>
</table>

IE (6+) had problems displaying background image set in TR when there is background image set for TD. Solution to this is quite simple althow not as nearly logical.

Solution:
<style>
table tr {
*position: relative;
background-image: url(pic.gif);
}
table tr td {
background-image: url(pic_2.gif);
}
</style>


Have fun...
NOTE: The star (*) in front of position attribute is a CSS hack, all browsers except IE will ignore that line.

Other headlines:
MeanEYE IE6 Update
MeanEYE New software comming slowly...
MeanEYE IE6, IE7 min-height fix...
MeanEYE Yay, progress...