Visual composer and product category

Home Forums Jevelin Theme Visual composer and product category

Home Forums Jevelin Theme Visual composer and product category

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    RESOLVED Posts
  • alexbombaster
    Participant

    Hey, I’ve added on the main page of my website with visual composer a row with “Product Category ”, on desktop the products show on 4 columns but on mobile the products doesn’t come on 2 columns it remains on 4 and the content of teh product box is almost unreadable. Do you have a solution on this ?

    Attachments:
    You must be logged in to view attached files.

    alexbombaster
    Participant

    Hi @alexbombaster,

     

    I hope you are well today and thank you for your question.

     

    Could you please share the page URL from your site where the product category is displaying so that I can troubleshoot it?

     

    Best regards,
    Shufflehound team

    alexbombaster
    Participant

    Hey,

     

    Thsi is the website link http://totalcopyfagaras.ro/

    Solution for this topic

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    @media (max-width: 800px) {
    #page-container .woocommerce ul.products li.product {
        width: 45%;
        margin-bottom: 30px;
    }
    #page-container .woocommerce ul.products li.product:nth-child(2n+1) {
        clear: both;
    }
    }
    
    @media (max-width: 550px) {
    #page-container .woocommerce ul.products li.product {
        width: 100%;
    }
    }

    alexbombaster
    Participant

    Thank you !

    You are most welcome here 🙂

Viewing 7 posts - 1 through 7 (of 7 total)