MyBB Community Forums

Full Version: Links....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i make all links underlined?
CSS
a {
text-decoration:underline;
}

a:hover {
text-decoration:underline;
}
(2010-01-21, 03:43 AM)flav1us Wrote: [ -> ]CSS
a {
text-decoration:underline;
}

a:hover {
text-decoration:underline;
}