Is there anyway to turn off the blue border around an image when the image is part of a link on the Nokia 7650?
Is there anyway to turn off the blue border around an image when the image is part of a link on the Nokia 7650?
Is there any changes for this? Using web browser puts blue border on every link when you touch and not any css seems to get rid of it ? ???
Hi,
you could try:
Or generally for links:Code:a img:hover { border: none !important; }
Code:a:hover{ border: none !important; }
Last edited by UnPlan2ned; 2012-03-25 at 16:27. Reason: added second code-snippet
If you want to remove any image border, you can use this:
img{
border:none;
}