
Originally Posted by
janellez
Thank you so much - must have been in the code I copied in just to play with content on that page. Thank you again! I'm sure it's something really simple, but how do I stop the categories from showing up on the main section of the index page?
Thanks!
Janelle
Configuration, Index Listing, "Categories - Always Show on Main Page"
Also, your home page categories are one on top of the other because of a change you made in your css. You didn't want your logo to float left, so you should have changed this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
to this:
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
So that ONLY the logo would stop floating left. The other things above need to continue to float:left.
You changed that section to this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
}
Bookmarks