Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* reduces the form's top padding by 10px to compensate for a noticeable 10px shift downwards when relative positioning was applied to .form-section */
- .form-all {
- padding-top:10px;
- }
- /* this ensures that the values declared for the "top" and "left" properties reposition absolutely positioned children of .form-section in relation to their parent and not the page */
- .form-section {
- position:relative;
- }
- /* Hides the labels "First Name" and "Last Name" from the form's page but not from the email alerts and report */
- #label_26, #label_25 {
- display:none;
- }
- #id_26, #id_25 {
- position:absolute;
- top:10px;
- }
- #id_26 {
- left:126px;
- }
- #id_25 {
- left:197px;
- }
- /* removes the pink background when errors are triggered */
- .form-line-error {
- background:none repeat scroll 0 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment