I am trying to customize the height of my ahref element in my website. I have set a class value, and the class value in my CSS file looks like this :
.CockpitArrowLink {
height: 70px !important;
font-size : 13px;
min-height:70px !important;
}
I want my height to be set at 70px, but it always shows as 16px. I am thinking that the font size is having an effect on the size. If i look at my style tab in chrome, I see no mention of these 16px hoever plenty of mentions of the 70px.
However if I look at the computed tab in Chrome, i see that the height of my ahref is auto, and if I hover of the blue box, i see that it is 16px.
How do I override this value?