Replies: 0
Hey,
I had this code and loved the design for my radio buttons:
span.wpcf7-list-item {
width: auto;
margin-top: 0;
margin-bottom: 0;
line-height: 30px;
color: #333;
font-weight: 300;
}
But then I wanted the use_label_element so that the numbers were clickable not just the circle. However once I did this it changed the font weight and lineheight. I found a way to change the font weight again, but it ignores my line height.
label, legend {
font-weight: 300;
line-height: 30px !important;
}
Is there a way to get my old line height back?