Get rid of drop shadow on classic button text

https://www.tonguetie.org.uk/
I have tried
.x-btn:hover, .button:hover, [type=“submit”]:hover {
text-shadow: unset !important;
}

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

but I’m still getting a shadow on the text - are you able to help please?

Hello @lisacole1,

Thanks for writing in!

Please use following CSS under X > Theme Options > CSS:

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

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.