Forums

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

Home Forums CSS How to increase clickable area to anchors? Reply To: How to increase clickable area to anchors?

#285820
Paulie_D
Member

You have extra padding on the li which should be on the a

.sub_nav li {
    color: #dcecff;
    height: 21px;
    line-height: 21px;
    padding-left: 44px; /* remove this */
    margin-bottom: 42px;
    cursor: pointer;
}

and change this

#sub_nav ul li a {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #dcecff;
    padding-left: 44px; / *add this */
}