Report a problem from color links
-
hello
the color links option work true but when using Responsive text block woodmart the color links not working.
there is a css that must remove: color: inherit
.woodmart-text-block-wrapper .woodmart-text-block h1, .woodmart-text-block-wrapper .woodmart-text-block h2, .woodmart-text-block-wrapper .woodmart-text-block h3, .woodmart-text-block-wrapper .woodmart-text-block h4, .woodmart-text-block-wrapper .woodmart-text-block h5, .woodmart-text-block-wrapper .woodmart-text-block h6, .woodmart-text-block-wrapper .woodmart-text-block p, .woodmart-text-block-wrapper .woodmart-text-block a {
font-size: inherit;
color: inherit;
line-height: inherit; }
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
body .woodmart-text-block-wrapper .woodmart-text-block a {
color: red;
}
body .woodmart-text-block-wrapper .woodmart-text-block a:hover {
color: blue;
}
Regards