Hi guys!
I have a website in PHP that runs centered of the browser. i want to design it such that it covers the whole page of the browser e.g. (www.gmail.com). Does anyone have any templates or links that can help me out on this one?

You shouldn't need a template to do this! Just look at the CSS.

The easiest way to do this is to create a <div> tag that wraps around all your content, then specify the width of it using CSS.

<html>
<head>
<style type="text/css">
  container {
    width: 100%;
}
  </style>
</head>
<body>
    <div id="container">
        ------PUT ALL YOUR CONTENT HERE-----
    </div>
</body>
</html>
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.