NSABaits:
Agreed in the end with you Clyde. Just added the CSS3 code and all is working well.
However I'm seeing another problem with the center box in ie8 and FF (havent checked other browsers yet).
Some items are falling outside of the center box. This can be seen best using this link.
http://www.a19bs.com/shop/index.php?main_page=page_2
It can also be seen at the following link where the buttons are outside of the light blue center box.
http://www.a19bs.com/shop/index.php?main_page=shippinginfo
Fault 2 only occurs in ie8 after the addition of the CSS3 code that you provided.
Do you have any ideas?
Cheers, Giles.
Open the stylesheet.css and add the following
.clearfix:after {
clear: both;
content: '.';
display: block;
visibility: hidden;
height: 0;
}
.clearfix {display: inline-block;}
- html .clearfix {height: 1%;}
.clearfix {display: block;}
Open tpl_page_2_default.php find the following
<div id="pageTwoMainContent" class="content">
and replace with this
<div id="pageTwoMainContent" class="content clearfix">
open tpl_shippinginfo_default.php find the following
<div id="shippingInfoMainContent" class="content">
and replace with this
<div id="shippingInfoMainContent" class="content clearfix">