iPhone Ph Number Buttons

BigRatty

New Member
Hi All

Hope this is the right topic

I have a issue with my mobile website when displayed on an iPhone
I have 'buttons' at the top of the page for navigation.
But those styles "red border" are applied to the Ph. numbers at the bottom


Help Urgent
 

Edge

Member
It's because the iPhone turns phone numbers into links and you have a red border universal style set for any links. Make it more specific and change to
.text a {
text-decoration: none; display:block; padding:8px 4px;
background: #f0f0f0;
border-style: solid; border-width: 4px; border-radius: 20px;
border-color: #D61921; width:130px;

}
 
Top