How can I reduce the space between the fields? Can I get the fields to be less spaced so I can insert more fields per inch?
where is the space value in CSS...
Thanks very much
Started 3 years ago by cssdude | 2 posts |
How can I reduce the space between the fields? Can I get the fields to be less spaced so I can insert more fields per inch?
where is the space value in CSS...
Thanks very much
Hi,
Try to search this on your CSS form :
form li
{
display:block;
margin:0;
padding:4px 5px 2px 9px; /* <-- you can change on this value */
position:relative;
}
change to
form li
{
display:block;
margin:0;
padding:0px 5px 0px 9px; /* <-- you can change on this value */
position:relative;
}MachForm Support
You must log in to post.