After creating a mobile version of my Wordpress website, especially for m.mysite.com, I noticed that while the mobile site displayed the correct color (#000) for the mobile number, the actual mobile device showed it in white. Here is the code I used:
<div class="header_number">
281-407-6199
</div>
And the CSS:
.header_number{
background: url(images/bg_3.png);
background-color:#919191;
text-align: center;
font-family:Verdana;
font-size:26px;
color:#813010 !important;
padding-top: 4px;
padding-bottom: 23px;
}
header_number a{
color:#813010 !important;
}
I am looking for a solution to ensure that the color remains consistent on the mobile device. Any suggestions on how to achieve this?