I have set "new, featured, and special Products Columns per Row" to 3 in the Index Listing section of the admin but when I go to the any of those pages i have only one product on each row. Am I missing something?![]()
I have set "new, featured, and special Products Columns per Row" to 3 in the Index Listing section of the admin but when I go to the any of those pages i have only one product on each row. Am I missing something?![]()
This happens a lot, and everytime I've seen this happen, its because people change this line:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
They decide they don't want their logo to float:left, so they change the above float:left to something else, then all the other things in the list don't float left anymore.
Anyway, check that section, and see if that could be the issue. Remember, in css, if there are commas between items, ALL THE ITEMS in that list USE that css, so if you didn't want your logo to be float:left, you could just remove #logo from the list, like this:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
I checked and it is set to float:left but it still now displaying the columns
Your URL?
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
I would like to know how this was resolved.... please? I would like to make my new listings page in the columns and have it set to 3 in the index, but it is only showing 1 per row. I would like it to display like my specials page. Any help or advise? Thank you!
Specials
New Listing
.centerBoxContentsNew, - add this to that list. It worked for me!