
Originally Posted by
digitalhalo
http://www.massageit.co.uk/index.php...index&cPath=65
Why is it only letting me have 1 subcategory image per line? It was the same case when it was text-only.
I have set "subcategoryies per row" to 3 in the control panel, so that shouldn't be the problem...
Any help appreciated, thanks.
Its because you currently have this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: middle;
}
instead of the original:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
First of all, there's no such thing as float:middle, and second of all, when you see a list of css tags with commas, you should never change all of them, instead remove the one you want the change reflected in, and move it to a separate line.