Hi,
Just incase nobody has spotted them already. There are one or two coding bugs in Actinic's own CSS.
When using the Clean CSS Layout theme the following CSS bug was spotted:
Should be:
Just incase nobody has spotted them already. There are one or two coding bugs in Actinic's own CSS.
When using the Clean CSS Layout theme the following CSS bug was spotted:
Code:
div.CheckoutCartSection {
margin-top; 0px;
margin-bottom: 10px;
}
Code:
div.CheckoutCartSection {
margin-top: 0px;
margin-bottom: 10px;
}
I've only started developing in Actinic V10 over a week ago, so missed the opportunity to play with the BETA release.
Comment