Advertisement
Guest User

header.php

a guest
Jul 26th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.   <head>
  5.     <title>Forms</title>
  6.     <style type="text/css">
  7.       .errorlist, .error input{
  8.         border: 1px solid #f00;
  9.         background: #fdd;
  10.       }
  11.       form.cmxform fieldset {
  12.         margin-bottom: 10px;
  13.       }
  14.       form.cmxform legend {
  15.         padding: 0 2px;
  16.         font-weight: bold;
  17.       }
  18.       form.cmxform label {
  19.         display: inline-block;
  20.         line-height: 1.8;
  21.         vertical-align: top;
  22.       }
  23.       form.cmxform fieldset ol {
  24.         margin: 0;
  25.         padding: 0;
  26.       }
  27.       form.cmxform fieldset li {
  28.         list-style: none;
  29.         padding: 5px;
  30.         margin: 0;
  31.       }
  32.       form.cmxform em {
  33.         font-weight: bold;
  34.         font-style: normal;
  35.         color: #f00;
  36.       }
  37.       form.cmxform label {
  38.         width: 120px; /* Width of labels */
  39.       }
  40.     </style>
  41.   </head>
  42.   <body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement