So I’m building out an ecommerce part of a wordpress site. http://www.bluestarnj.com. Now when I go to list out a product category like here: http://www.bluestarnj.com/?it_exchange_category=odcp
I get an unformatted list for each of my products. I’d like to format these CSS classes, such as class=entry_content and class=it-exchange-product, but firebug is showing me that these classes are not linked to any known css files on my server. I’ve properly called the get header and footer functions in the category.php file so I’m totally perplexed as to why it can’t find the CSS files associated with those CSS classes.
Any help would be greatly appreciated.
Baroti
/wp-content/themes/BLUESTAR/style.css, line 475:
Should be:
What you have there is class first, element second, which CSS reads as: element with class .it-exchange-product is the parent of element li. CSS should see it as element with a class of it-exchange-product.
Hope it helps.
Um are you including the header.php file in your category file ? There might be a parent css file that you haven’t included