Go Back   Novahq.net Forum > Computers > Web design and Programming
FAQ Community Calendar Today's Posts Search

Web design and Programming Discuss website creation and other programming topics.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 07-20-2008, 12:53 PM
atholon is offline atholon
"ath-hole"

Join Date: Jan 2003
Location: Failville.
Posts: 11,357

Send a message via MSN to atholon
CSS Lesson 2 - Header and Body

Normally I separate the website into two parts. A header which contains the logo and the body which contains the rest.

It looks somewhat like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>My Site</title>
<link rel="STYLESHEET" href="defaultTheme.css" type="text/css">
</head>
<body>
<div id="maincontainer">
 <div id="header"></div>
 <div id="mainbody"></div>
</div>
</body>
</html>
Unfortunately CSS will not let you simply set high properties on an element. Often it requires you to create a table if you want the content container to expand with the content.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>My Site</title>
<link rel="STYLESHEET" href="defaultTheme.css" type="text/css">
</head>
<body>
<div id="maincontainer">
 <div id="header"></div>
 <div id="mainbody">
 <table id="maintable">
 <tr><td id="content">Content Area
 </td></tr>
 <tr><td id="sidebar">Links 
 </td></tr>
 </table>
 </div>
</div>
</body>
</html>
This is also important if you want different columns like a sidebar or something similar. If anyone does have a better method for this let me know .

CSS:
Code:
body
{
  background-color: #00000;
}
#maincontainer
{
  margin-left:auto;
  margin-right:auto;
  width:780px;
  height: 100%;
  border: 1px solid black;
}
#maintable
{
  width: 100%;
  height: 100%;
}
__________________
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
CSS Lesson 1 -Fixed Layout Basics atholon Web design and Programming 0 07-20-2008 12:30 PM
Header Please and thanks Scattergun Sigs and Graphics 5 10-15-2005 03:26 AM
Problem with header ? ~MOUSE~ Feedback / Novahq.net Support 6 05-22-2005 12:48 PM
Header Scattergun Sigs and Graphics 8 02-17-2005 10:02 PM
New Header Images Lakie News 20 12-17-2004 07:16 PM


All times are GMT -5. The time now is 08:28 AM.




Powered by vBulletin®