Hey can anyone point me in the direction of coding a layout? I have my photoshop layout and its all sliced and ready to go and I've tried creating a table for it but it doesnt fill up the whole page.

Recommended Answers

All 4 Replies

don't use tables, use divs

<!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">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>The title</title>
</head>

<body>
<div id="container">
<div id="header">
</div>
<div id="navigation">
</div>
<div id="main">
</div>
</body>
</div>
</body>

</html>

w3schools.com have got rich web designing tutorials .

You are NOT going to make any image exactly fill a browser window.

There are several reasons why:

1. Different computers have different screen resolutions.

2. Different users have differing numbers of toolbars on their browsers.

3. The browser window might not be maximized.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.