hi , i just want to know if it’s possible to change the colours of attribut ( blue to black for example) and also same type font for all.
Hi,
If you are familiar with CSS, you can change these colors using CSS tweaks, please check this sample: CSS Styling Links
I hope this is helpful to you.
You mean you want to change the blue color of an attribute link to black or something else, right?
Use this code in Additional CSS to change it. It will work perfectly:
.hp-listing__attribute a {
color: black !important;
/* Change to your desired color */
}
To change the font of the attribute link, you can use this CSS code:
.hp-listing__attribute a {
font-family: 'YourFontName', sans-serif !important;
/* Optional: Change to your desired font */
}
1 Like
thanks lot !
thank’s a lot