Garrrrrr.
Just spent 2 hours trying to work out why a layout worked pixel perfect in IE6, IE7 and FF offline but developed a 8px discrepancy online with both flavours of IE.
After ripping out all the various layouts via the css (display:none) eventually nailed it to white space between <img> tags being rendered incorrectly upon upload.
Original code in Actinic:
<img 1>
<img 2>
<img 3>
..changing to
<img 1><img 2><img 3>
removed the white space issue and everything is peachy (they were being floated and IE doubles the floats).
Should have know better really as this happens with <li> and Actinic.
Thought would post in case of use to anyone else with the same issue.
Just spent 2 hours trying to work out why a layout worked pixel perfect in IE6, IE7 and FF offline but developed a 8px discrepancy online with both flavours of IE.
After ripping out all the various layouts via the css (display:none) eventually nailed it to white space between <img> tags being rendered incorrectly upon upload.
Original code in Actinic:
<img 1>
<img 2>
<img 3>
..changing to
<img 1><img 2><img 3>
removed the white space issue and everything is peachy (they were being floated and IE doubles the floats).
Should have know better really as this happens with <li> and Actinic.
Thought would post in case of use to anyone else with the same issue.
Comment