Remove text shadow on buttons

Hi guys,

I’m having some troubles removing the text shadow from my buttons. I succeeded earlier when I worked with id’s on my buttons but now I can’t make it work using class.

Also, I found this code from another thread about the same problem:

.x-btn.x-btn-flat, .x-btn.x-btn-flat:hover {
text-shadow: none; }

However, it had no effect on the buttons when added in the custom CSS.

Do you have any suggest for how I can solve this problem without adding id’s to all of my buttons?

The website is www.redrive.dk

I’m looking forward to hearing from you.

Best regards,

Carina

Hi Carina,

Please use

.x-btn {
  text-shadow: none !important;
}

Hope it helps

2 Likes

Hi Joao,

It worked!

Thanks for your help.

You’re welcome!
Thanks for letting us know that it has worked for you.