Site logo

Archived topic

Not able to change button text color from customizer

13 replies · Started by Brajmohan Kumar on June 18, 2020

Viewing posts 1–14 of 14

Hello team,

I am trying to change the blog archive "Read More" button text color & text hover color from customizer but my changed color is not reflecting.

I have set it to white but it is still showing black, see below:-

https://prnt.sc/t2ao0y
https://prnt.sc/t2ap4f

I have disabled Elementor's Default Colors & Fonts too but that didn't help: https://prnt.sc/t2ar5v

Let me know what is the issue here.

Thanks!

Hi there,

I'm not seeing the read more buttons on the page you've linked.

Can you activate it so I can see the issue?

Please also make sure to disable any caching plugins if you are using them.

Let me know :)

Hello,

I have sent you this URL: https://staging.boatengine.com/blog/

On the above URL if you will scroll down, you will see "READ MORE" button after the blog excerpt.

See: https://prnt.sc/t2thhz

Also, I am not using any cache plugin since it is a dev site.

I don't know where are you looking at.

Thanks!

Hi there,

they are being overwritten by this CSS that is coming from Elementor:

body.elementor-kit-7281 a {
    color: #00143E;
}

body.elementor-kit-7281 a:hover {
    color: #AFD8EB;
}

Thanks for checking :)

I have disabled Elementor’s Default Colors & Fonts too but that didn’t help: https://prnt.sc/t2ar5v

So what we can do here?

The CSS selector in that code is elementor-kit- which sounds like an elementor add on plugin is being used ? If so i would check what changes you have made using that

Try adding this CSS to override it:

.read-more-container a:hover {
    color: #fff !important;
}

Thanks :)

What about "Back to Top Button"?

I saw CSS code and it's coming from GenratePress but customizer color is not reflecting here.

Background Hover text is black but it's not reflecting there: https://prnt.sc/t30z4h

Thanks!

It would be the best if you check with the plugin support to see how to avoid this from happening repeatedly.

You can use this CSS as a patch solution:

.generate-back-to-top:hover, .generate-back-to-top:focus {
    color: #0a0a0a !important;
}

Thanks!

I have imported the Elementor template and that template is using the style from Elementor Theme Style: https://prnt.sc/t3vr9g

I think this was the reason for all the CSS issue :(

So what to do to completely avoid Elementor theme color and use the GenratePress theme customizer color?

This archived topic is closed to new replies.