PDA

View Full Version : How can I make my link not have ugly border?



roger
12-26-2013, 05:26 AM
Hi,

How can I make my link not have ugly border?

lukewright
12-26-2013, 06:37 AM
Hello Roger,

You mean the link dotted outline? Remove it like this:
Use css property:
a {
outline: 0;
}
or try this
a {
outline: none;
}

Gleedaniel13
02-09-2014, 11:34 AM
"Hello Roger,

You mean the link dotted outline? Remove it like this:
Use css property:
a {
outline: 0;
}
or try this
a {
outline: none;
} "

Thank you for providing this right information. I have been studying it also on how to improve the border of my link.