Archived topic
Make a Background and Border to Breadcrumb
4 replies · Started by Ritesh on June 3, 2021
Hello,
Can we achieve these 2 for breadcrumb?
1] Make a Light color border with proper padding (See this image: https://prnt.sc/13vfi4c)
2] And Give a light background to the breadcrumb. Background color and Text should be variable (I can change later)
Please help me for CSS
Ritesh
Website URL : https://the-mencare-co-6aed26.ingress-earth.easywp.com/
Hi there,
Try something like this:
.woocommerce .woocommerce-breadcrumb {
border: 1px solid #000;
padding: 5px;
background-color: #333;
}
Hi
Thanks for this CSS.
Can you please help me to change the color of the Text
Hi Ritesh,
You can use Leo's CSS selectors to do that. Add color property.
Example:
.woocommerce .woocommerce-breadcrumb {
border: 1px solid #000;
padding: 5px;
background-color: #333;
color: white;
}
Or this one to style the links within the breadcrumbs:
.woocommerce .woocommerce-breadcrumb a {
color: white;
}