I am having the hardest time styling this fieldset. it seems to be picking up random styling that I didn't place on it. There is a random margin that is show in the inpsect and its pushing the label to a new line. Additionally its center aligned and I can't find any code that is tells it to do that.
https://sidecoinc.com/contact/
I've attached the code but this doesn't seem to be the problem.
I am trying to get it to just look normal. Check boxes with labels next to them and left aligned.
<fieldset for="MSM_custom_Interests">
<legend>What do you need help with?</legend>
<input type="checkbox" class="custom_input" name="MSM_custom_JamesHardie" value="True">James Hardie<br>
<input type="checkbox" class="custom_input" name="MSM_custom_MarvinWindowsDoors" value="True">Marvin Windows & Doors<br>
<input type="checkbox" class="custom_input" name="MSM_custom_TimberTech" value="True">TimberTech<br>
<input type="checkbox" class="custom_input" name="MSM_custom_MoistureManagement" value="True">Moisture Management info<br>
<input type="checkbox" class="custom_input" name="MSM_custom_OutdoorLiving" value="True">Outdoor Living Options<br>
<input type="checkbox" class="custom_input" name="MSM_custom_Everything" value="True">Everything<br>
<input type="checkbox" class="custom_input" name="MSM_custom_Other" value="True">Other<br>
</fieldset>
#marketsharpmFieldSet input.custom_input {
width: auto;
height: auto;
}
#marketsharpmFormDiv input {
border-spacing: 0px;
margin: 0px;
padding: 0px;
space: 0px;
display: block;
}
#marketsharpmFieldSet input {
width: 100%;
height: 32px;
}
