How can I remove the gray line that appears before every section break?
OR
How can I remove the gray line that appears after the description?
Started 2 years ago by ruslan | 3 posts |
How can I remove the gray line that appears before every section break?
OR
How can I remove the gray line that appears after the description?
Hi,
* To remove dotted line after the description, search for these CSS code :
#main_body .form_description
{
border-bottom:1px dotted #ccc;
clear:both;
display:inline-block;
margin:0 0 1em;
}
and change it to
#main_body .form_description
{
/*border-bottom:1px dotted #ccc;*/
clear:both;
display:inline-block;
margin:0 0 1em;
}
* To remove dotted line in section break, search for this CSS code
#main_body form li.section_break
{
border-top:1px dotted #ccc;
margin-top:9px;
padding-bottom:0;
padding-left:9px;
padding-top:13px;
width:97% !important;
}
change to
#main_body form li.section_break
{
/*border-top:1px dotted #ccc;*/
margin-top:9px;
padding-bottom:0;
padding-left:9px;
padding-top:13px;
width:97% !important;
}MachForm Support
Thanks, it works!
You must log in to post.