Reputation: 3063
If you look here http://jsfiddle.net/Grek/JRqcB/ you'll see that the hyperlink seems to be bottom-aligned compared to the text. What is the issue and how can I fix it? Many thanks
Upvotes: 1
Views: 85
Reputation: 30453
Remove vertical-align: middle;
from css for the link.
See also: http://phrogz.net/css/vertical-align/index.html
Upvotes: 3
Reputation: 94469
Remove the CSS property vertical-align:middle
in the following style:
#activity-container a {
color: #467FD9;
text-decoration: none;
}
Example: http://jsfiddle.net/JRqcB/3/
Upvotes: 3