Tab Form Styling
CSS stylesheet for formatting three levels of headers and spacing out form blocks:
<style type="text/css"> .form_label { padding: 5px 0 5px 10px !important; width: 250px !important; } .first_level { font-size: 20px; color: #006aa6; display: inline-block; margin-bottom: 25px; } .second_level { font-size: 18px; color: #006aa6; display: inline-block; margin: 10px 0; padding-bottom: 2px; border-bottom: 1px #006aa6 solid; } .third_level { font-size: 14px; color: #006aa6; display: inline-block; margin: 5px 0; } </style>
Example code:
Add Comment