Subcategory images issue:
You changed this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
to this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:center;
}
A) There's no such thing as float:center;, B) When you have a list of css things like the above, never change all of them, only change the one you actually want changed. SO, if you want the logo to no longer be "float:left", simply remove #logo from the above list, like this:
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
Then the other stuff that NEEDS to float:left, will still float:left.
1) admin, "configuration", "product listing"
2) same as #1, change next/prev to bottom
3) Add to css:
#productDetailsList {float:right}
4) "catalog", "product types" edit the product general layout
Bookmarks