Hi,
Does anyone know how I can change the color of the “Shop Now” text in the button of my image banner, using custom CSS?
page link: https://maisonmidori.com/
A user seeks help changing the “Shop Now” button text color in their image banner using custom CSS.
Solutions provided:
Background color approach: One suggestion recommends modifying the button background using:
.banner__buttons {
background: #B768F2;
}
Comprehensive styling: Another response offers a more complete solution targeting the button element directly:
.banner__buttons .button {
background-color: #ffffff;
border: none;
color: black;
}
Both responses provide CSS code snippets to customize the banner button appearance, though they take slightly different approaches—one focusing on the container background, the other on the button element itself with additional border and color properties.
Hi,
Does anyone know how I can change the color of the “Shop Now” text in the button of my image banner, using custom CSS?
page link: https://maisonmidori.com/
The background needs to be replaced with the color you require.
.banner__buttons{
background: #7B862F
}
Hi @maisongreen_03 ,
Please add code:
.banner__buttons .button {
background-color: #ffffff;
border: none;
color: black;
}