Home › Forums › CSS › Can’t click on my link.. Why? › Re: Can’t click on my link.. Why?
March 11, 2013 at 8:20 pm
#127807
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