Hello
I noticed that more about is the same color as the text
the customer does not know he can click on the link to find out more
how to fix this problem
thank you


Hi, @said4440,
In the file Project_Folder/themes/Your_Theme/assets/css/theme.css
You need to comment this line
color: inherit;
In fact, you can replace this
a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
color: inherit;
text-decoration: none
}
by this
a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
/*color: inherit;*/
text-decoration: none
}
Thanks to check & feedback
hello thank you for your help but this method does not work



@said4440, I've not commented it in the custom.css file but into the theme.css file.


Thanks!
Thank you very much @khouloudbelguith for the help you have given
Hi @said4440,
You are welcome.
I close the issue, feel free to open a new one when needed.
Thanks!