I've been attempting to align two custom fields on a checkout form next to each other, but I'm running into an issue where the fields below are overlapping. I've experimented with using clear: both/left/right;
to address this problem, but it hasn't provided the desired solution. Additionally, I've tried incorporating
display: block/inline/inline-block;
to prompt the element beneath them to move to a new line.
Do you have any recommendations for resolving this issue?
.pract_county, .pract_postcode {
float: left;
margin-right: 47px;
}