1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

Customization Help! I just need a blank html template

Discussion in 'General' started by hortonteam, Nov 2, 2009.

Thread Status:
Not open for further replies.
  1. hortonteam

    hortonteam New Member

    Can someone please help! I need a blank html template 8.5 wide (plain white) with a color on the outside of the doc, prefer dark blue, ready centered on the screen. So if someone prints it just prints the document.
     
  2. enigma1

    enigma1 New Member

    Here is a simple empty document 850px wide content and a dark blue background. You could remove the hard-coded height from the content div once you setup the actual content.

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
    <head>
    <title>test page</title>
    <style type="text/css">
    
    body {
      font-family: Arial, sans-serif;
      font-size: 11px;
      line-height: 1.5;
      background-color: #000066;
    }
    
    #wrapper {
      margin: 0 auto;
      width: 850px;
      position: relative;
    }
    
    #content {
      background-color: #FFF;
      height: 800px;
      padding: 8px;
    }
    
    </style>
    </head>
    <body>
      <div id="wrapper">
        <div id="content">
    
        </div>
      </div>
    </body>
    </html>
     
  3. hortonteam

    hortonteam New Member

    Thank You so much!
     
Thread Status:
Not open for further replies.