Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can’t click on my link.. Why? Re: Can’t click on my link.. Why?

#127807
pixelgrid
Participant

you have to increase the height of the span container where your facebooklogo class is

setting no height for the span.number would be the best also height from 120 seems ok but pushes the content below

.number {
float: right;
margin-top: 20px;
width: 162px;
}
Or

.number {
float: right;
margin-top: 20px;
height: 120px;
width: 162px;
}

makes the whole image clickable