Site logo

[Support request] Remove bullet points from Woocommerce shop page

Home Forums Support [Support request] Remove bullet points from Woocommerce shop page

Home Forums Support Remove bullet points from Woocommerce shop page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2198174
    Kecia

    I am using GeneratePress for a blog that has a Woocommerce shop: https://letslearnprintables.com/shop/

    I have styled the bullet points how I would like them on my blog posts (green checkmark). That same green checkmark is showing up just above each of my shop’s product images on the main shop page. I want to remove them there.

    For reference, I used this CSS to get the bullet points for my blog posts how I want them:

    .entry-content ul {
        list-style: none;
    }
    .entry-content  ul li:before {
        content: '✓';
        color: #79CB41;
    	  font-weight: bold;
    }

    Is there other CSS I can use to remove the checkmarks from above the product images in the shop?

    #2198215
    Ying
    Staff
    Customer Support

    Hi Kecia,

    You can change this CSS

    .entry-content  ul li:before {
        content: '✓';
        color: #79CB41;
    	  font-weight: bold;
    }

    to this:

    body:not(.woocommerce) .entry-content  ul li:before {
        content: '✓';
        color: #79CB41;
        font-weight: bold;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.