Hello,
I can’t change the color of the category and product page displayed
Is there a solution to improve the presentation of the selected pages in this shop menu?
Either by changing the color of the pages displayed in orange
Either by adding a colored background on the menu for more clarity
Thank you for your advice
Sincerely
Christophe
Hey zemag33,
These are all things that can be adjusted via css. Are you just looking to remove the orange in the price, titles, etc.???
Best regards,
Jordan Shannon
Hey,
Could you please post a screenshot showing the changes you would like to make so we can make sure we are on the same page?
You can upload your screenshots on imgur.com or Dropbox public folder and post it there :)
Regards,
Yigit
Hi,
Thanks for the update. This css code should change the color of the current category item.
.current-cat.cat-parent a {
color: red;
}
Best regards,
Ismael
Hi,
Adjust the code a bit:
.sidebar .current-cat a, .sidebar .current-cat .children li a {
color: orange;
}
Don’t forget to remove the browser cache prior to checking the page.
Best regards,
Ismael
Hi,
Thanks for the update.
This code overrides that css modification.
.sidebar .widget a {
color: #011424;
}
Did you add that? You can adjust the css code a bit, so it takes priority.
.sidebar .widget .current-cat a, .sidebar .widget .current-cat .children li a {
color: orange !important;
}
Best regards,
Ismael