<div data-role="page" style="background:#000">
<a href="http://google.com">test</a>
</div>
As you can see here: http://jsfiddle.net/KCqqN/
Jquery Mobile appears to add a white color drop shadow, how to get rid of that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your stylesheet (make sure it is below the jQuery mobile stylesheet)
Simply set the text-shadow yourself, to whatever you want.
.ui-body-c, .ui-overlay-c { text-shadow:0 0 0; }In the jsFiddle it loads the jquery mobile css afterwards, so if you throw an additional tag in there (or use !important, better not to though) it’ll trump it.
body .ui-body-c, body .ui-overlay-c { text-shadow:0 0 0; } // more specificityhttp://jsfiddle.net/KCqqN/2/