• Resolved cat199567

    (@cat199567)


    I have a product archive page which displays all the products from a specific category.

    My issue is that I only want the product image and title to be displayed. I have managed to remove everything else but I have a lot of white space now where the other elements used to be.

    Is there any way to remove this white space so that only the product image and title are displayed.

    /*Hide the woocommerce price tag */
    .woocommerce-Price-amount{
    	display: none !important;
    }
    /*Product Archive Add to Cart Box */
    .box-bottom{
    	display: none;
    }

    Screenshot: Link

    • This topic was modified 5 years, 1 month ago by cat199567.
    • This topic was modified 5 years, 1 month ago by cat199567.
Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s hard to say without seeing the code as you’ve already modified the display of the site from the default look. Do you have a link to the live site to make it easier to debug?

    Thread Starter cat199567

    (@cat199567)

    Yeah sure, I have had the site in maintenance mode the entire time so will take it off for a while so you can see it.

    Really appreciate your assistance.

    Location of page: Home Page > Portfolio > Cricket

    • This reply was modified 5 years, 1 month ago by cat199567.

    You can use the following CSS in Appearance->Customize->Additional CSS

    .archive .main-shop .products .product-box {
    	height: auto;
    }
    
    .archive .main-shop .products .product-box .imagebox {
    	min-height: auto;
    }

    However, your theme is not Storefront which is what this support forum is for. The theme you are using is from here:

    https://athemeart.com/downloads/shopstore/

    So any further support you need should be handled with the developers through their support system.

    Thread Starter cat199567

    (@cat199567)

    Thank you so much Jarret, You are a life saver! That works perfectly!

    Apologies for coming to the incorrect forum, thats completely my mistake.

    Hope you have a great day!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Product Archive Page Layout’ is closed to new replies.