Hi.
I have a problem with the color of anchor text. While in the visual composer is colored (I put blue in format – text highlighting), as you can see here https://www.screencast.com/t/9JdiUyPg
if I look at the post (not only this one), the anchor text is black (look at the last phrase of the text)
https://www.cibarsidimarketing.it/gestire-unattivita-ristorativa-nel-2017/
I noted that through the anchor text change color if I change the Theme Accent Color, but in that case I should change the color of background of widget etc. and I don’t want to do it. Thanks a lot!
Hello,
It seems the black color is coming from your end. The theme css does not apply as it is rewritten by either a custom css in the theme panel or a plugin css.
Please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
One of your collegue create for me a CSS code because the background of the facebook page’s word (of the widget of WP) was different from the Theme Accent Color.
Now I erase the css code and the background is a dark grey, as you can see here in the sidebar
https://www.cibarsidimarketing.it/gestire-unattivita-ristorativa-nel-2017/
Anymore, the anchor text is always black, even if I erased the cache of ny browser.
So, the problems are now two, and not just one =)
I understood that I should create an entire template from visual composer grid builder, isn’t it?
However, because I tried and is not so intuitive for me, I would know if it possible to solve the problem without make some changes.
Sorry but my english is awful and to use a english-language theme is not so simple for me (but the theme is great, so I wanted to trust you and buy this theme
Thanks for your unlimited support! =)
Hi,
You can use the code provided for the facebook widget, as I do not think it affects the links in the post content. The link should inherit the theme accent color by default – https://www.screencast.com/t/FH75d5L37Gm or the color set for it in the post settings – https://www.screencast.com/t/DLgUPMfGgH You could use this code to make the link text color however you like – https://www.screencast.com/t/DFRRQqJ4ukVV just enter it in Theme panel->Custom Css
.td-post-content a {
color: blue;
}
Thanks
Hi,
This code is for all the links on the pages, if you want to make it more specific you must identify the element where you want it to apply using the browser inspector tool – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ and modify the code accordingly.
.td-main-content-wrap a {
color: blue;
}
Thanks