How can I alter the product info background color in the Prestige theme?

Hello,

Does anyone know how to change the background colour of the Product Info section of the product card? My theme is Prestige and there is nowhere to change any product card colour settings. Website is www.bestfurnitureonline.co.uk. First image is where I would like the colour to appear, and second image is an example of how I want it to look. The hex code I would like is #CFCBA4.

1 Like

Hi @matthewalker ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file:

.ProductItem__Info,
.incubate-collections-add-to-cart-widget {
    background: #CFCBA4;
    padding: 5px !important;
}
.incubate-collections-add-to-cart-widget {
    padding-bottom: 15px !important;
}

I hope it would help you

This worked, thanks! Do you know how to round the corners? Thanks!!

1 Like

Hi @matthewalker ,

Sure, I’m happy to help you. Let’s try this solution:
You can replace previous code by below code:

.ProductItem__Info {
    padding: 5px !important;
    background: #CFCBA4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}
.incubate-collections-add-to-cart-widget {
    padding-bottom: 15px !important;
    background: #CFCBA4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

I hope it would help you