• Hi,

    can I have a product Archive short description in grid view? it works in a list view just fine but when I switch to grid view, description is gone.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    Kindly add this CSS code in the customize > custom CSS/JS.

    .woocommerce ul.products li.product li.woo-desc {
    	display: block;
    }
    Thread Starter robertlou

    (@robertlou)

    Hi,

    that did not work but once a added this everything works.

    .woocommerce ul.products li.product li.woo-desc {
        display: block !important;
    }

    Thanks

    Thread Starter robertlou

    (@robertlou)

    one more question. How do I control color and text size of this description?

    Thanks

    Hello,

    Please Add the CSS code in the custom CSS section of the customizer.

    .woocommerce ul.products li.product li.woo-desc {   
        font-size: 16px;
        color: #2ebcde;
    }
    Thread Starter robertlou

    (@robertlou)

    Thanks you, works nicely.

    I am also trying to change font,size and color in product title in product archive.Is that similar code? I cant get it to work.

    Thanks

    Hello,

    Here is the code for product title in the product archive page.

    .woocommerce ul.products li.product li.title a {
        font-size: 18px;
        color: #2ebcde;
    }
    Thread Starter robertlou

    (@robertlou)

    thank you!

    You’re welcome!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Archive Short Description’ is closed to new replies.