Since the update of the theme, we have problem with the links’ color.
When I hover on the link, it turns grey and it is working. But the regular color stay black (it is set in orange) which is not very convenient. We cannot distinguish links from text
NB: On the blog, links are correctly displayed but not on regular pages.
In the 6.2 update “Responsive text block” was deprecated and replaced with “Text block” element. To fix this issue try to replace “Responsive text block” content with “Text block”, or as alternative you can use following cutom code to fix link colors inside old elements. Try to add this custom CSS inside Global Custom CSS area in Theme Settings.
.woodmart-text-block a {
color: var(--wd-link-color);
}