My website here: http://kissfmmedan.com when open in Mobile the Hypertext color and Go To Top button color are not changed even though I changed the Accent Color in Theme Panel > Mobile Theme.
What I missed? I need to Red color.
The Accent Color is still blue: https://i.snag.gy/MXBkN3.jpg
Even though I changed the color: https://i.snag.gy/bud4YV.jpg
Best Regards,
Hi,
Indeed there seems to be an issue with the mobile theme accent color, I will add this issue on our list and it will be fixed as soon as possible.
In the meantime I could give you a code to color the elements you want. This code will color the post content links and the scroll button with the color you want
– https://www.screencast.com/t/Db0CzAQ1j
.td-post-content a {
color: #f30f0f;
}
.td-scroll-up {
background-color: #f30f0f;
}
Enter it in Theme panel->Mobile theme->Custom CSS section. I will provide additional code if you want until the issue is taken care of. Sorry for the inconvenience.
Thank you!
Hi Simion,
Thanks a lot for the respond.
I copied and pasted the css code above: https://i.snag.gy/6SAe7y.jpg
Yes, it works. But social network icon gone red: https://i.snag.gy/4urqki.jpg, this not good. 🙂
And how to change color of Author hypertext too: https://i.snag.gy/cNrS6B.jpg
Best Regards,
Indeed, I did not see that sorry. Try this code instead for the post content links, it will also color the author name
– https://www.screencast.com/t/YHkgM1B1si
.td-post-content a:not(.td-social-network),
.td-post-author-name a {
color: #f30f0f;
}