sorry, the page is not working. I cant figure out permissions either
Hello @tyronius
In a public website, the styles defined themes, third-party plugins, or styles entered through the WordPress settings (Appearance > Customize > Additional CSS) can affect the tags on the page.
Possible CSS rules that affect sizes are padding, margin, height, width, border, line-height, font-size, etc.
I cannot identify which rules affect your input boxes (or their appearance) because your web page shows the “Sorry, but you do not have permission to view this content.” message.
However, if you want to remove the padding and reduce the height of input boxes, you can try the following style definition:
#fbuilder input[type="text"],
#fbuilder input[type="number"],
#fbuilder input[type="password"],
#fbuilder input[type="date"]{
padding: 2px !important;
font-size: 14px !important;
line-height: 16px !important;
}Note I use !important with every CSS rule. It ensures my rules have precedence over other CSS rules on the page.
Best regards.
