Home › Forums › CSS › How to increase clickable area to anchors? › Reply To: How to increase clickable area to anchors?
April 2, 2019 at 5:51 am
#285820
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 */
}