Greg
Greg

Reputation: 3063

Why is my hyperlink alignment different?

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

Answers (3)

Venkata Krishna
Venkata Krishna

Reputation: 15112

Remove vertical-align:middle in #activity-container a

Upvotes: 4

Danil Speransky
Danil Speransky

Reputation: 30453

Remove vertical-align: middle; from css for the link.

See also: http://phrogz.net/css/vertical-align/index.html

Upvotes: 3

Kevin Bowersox
Kevin Bowersox

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

Related Questions