Personally I would change the link hovers. If you hover over a link it gets styled bold, but that moves the text next to it.
Personally I would change the link hovers. If you hover over a link it gets styled bold, but that moves the text next to it.
How would i go about fixing that? What would i look for?
Find this in your stylesheet:
.post a:hover {
font-weight: bold;
}
and modify it as you want…
Help: http://www.w3schools.com/css/default.asp
yes. I detest bold link hovers.
looks like a nicely modified rin
THanks for the info guys. Yea i dont like those either, i just didnt know how to get rid of it. do i just find what moshu said and delete? if not, what do i change?
.post a:hover {
font-weight: bold;
}
And change it to:
.post a:hover {
font-weight: underline;
}
or
.post a:hover {
font-weight: none;
color: #ff0000;
}
or something like that.