
Originally Posted by
jdhone
Here is a link to my site.
http://jhaudiotech.com/shop
To repeat my request...I would like my Category and Subcategory listings to wrap horrizontally accross the page, just like the "featured, or new product" listings do. Is this possible? If so, how do I accomplish it.
Also, if you have any suggestions for my site, I would appreciate those as well.
Again, thank you for all your help!
Again, just as I said before, the issue was to do with this chunk of code:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
You have that section commented out. From your css file:
Code:
/*#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
#logo {
width:19.1em /* To prevent the logo from resizing, simply delete or comment out this section */
}*/
Remember that when you comment out a section of css, you're affecting EVERYTHING in the list. See how the above code lists SIX css descriptors:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg
You may have decided that you no longer wanted your #logo floated left. In that case, simply remove #logo from the list, don't force the other 5 items to change as well. So change your above code, to this:
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
/*#logo {
width:19.1em /* To prevent the logo from resizing, simply delete or comment out this section */
}*/
FIX THAT and your problem will be gone.
Bookmarks