Re: Text on top of banner
Re: Text on top of banner
Firefox renders it correctly but IE doesn't. It would appear that IE is not handling th "<br class="clearBoth" />" correctly. Quick Google seems to suggest that this is a common bug with IE. What you need to do is edit your Stylesheet (should be \includes\templates\YOUR CUSTOM FOLDER\css\stylesheet.css) and find the following code:
Code:
.clearBoth {
clear: both;
}
change this to read.
Code:
.clearBoth {
clear: all;
}
Re: Text on top of banner
Quote:
Originally Posted by
hem
Firefox renders it correctly but IE doesn't. It would appear that IE is not handling th "<br class="clearBoth" />" correctly. Quick Google seems to suggest that this is a common bug with IE. What you need to do is edit your Stylesheet (should be \includes\templates\YOUR CUSTOM FOLDER\css\stylesheet.css) and find the following code:
Code:
.clearBoth {
clear: both;
}
change this to read.
Code:
.clearBoth {
clear: all;
}
Hold off on this. It appears to be a severe bug in IE- Leave the clear as 'both' (not 'all') as 'all' is not w3c compliant.
Re: Text on top of banner
The standard recommended fix for this is to change the
<br class="clearBoth" />
to
<div class="clearBoth" ></div>
in the php file where it occurs.
Re: Text on top of banner
Quote:
Originally Posted by
gjh42
The standard recommended fix for this is to change the
<br class="clearBoth" />
to
<div class="clearBoth" ></div>
in the php file where it occurs.
Ouch- what a workaround!