WordPress Category Page Not reading CSS File

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.

Read More

Any help would be greatly appreciated.

Baroti

Related posts

Leave a Reply

2 comments

  1. /wp-content/themes/BLUESTAR/style.css, line 475:

    .it-exchange-product li{
    

    Should be:

    li.it-exchange-product
    

    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.