Soldato
- Joined
- 17 Mar 2004
- Posts
- 8,259
I purchased HTML, XHTML & CSS for Dummies!!
Good section in there about centering your website so the left and right column are bought in by specifiying a resolution for your website
So the code i've used in my css files is:
In firefox it works fine, but in iexplorer the margin is still on the left hand margin and not centred.
Any ideas
Here is my complete HTML site
Good section in there about centering your website so the left and right column are bought in by specifiying a resolution for your website
So the code i've used in my css files is:
Everything in my Html is within the #all body.#all {
background-color: #000000;
width: 1080px;
height: 800px;
margin-left: auto;
margin-right: auto;
}
In firefox it works fine, but in iexplorer the margin is still on the left hand margin and not centred.
Any ideas
Here is my complete HTML site
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects,builder"></script>
<script type="text/javascript" src="js/lightbox.js"></script>
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<title>externalStyle.html</title>
<link rel = "stylesheet"
type = "text/css"
href = "css/photocss.css" />
</head>
<body>
<div id = "all">
<div id = "header">
<h1> Temp Title - Lee M Gilbert</h1>
</div>
<div id = "left">
<h2>Groups</h2>
<p>
Thank you for visiting my website.
</p>
<p>Best viewed using Internet Explorer 7</p>
<p>
All Photos taken using a Nikon D60 with standard VR Lense and 70-300mm Lense
</p>
</div>
<div id = "right">
<h2>Gallery</h2>
<a href="images/Wheat.jpg" rel="lightbox[roadtrip]"title="Wheat Field"> <img src="thumbnails/Wheat_jpg.jpg"></td>
<a href="images/collseum.jpg" rel="lightbox[roadtrip]"title="collseum"> <img src="thumbnails/collseum_jpg.jpg"></td>
<a href="images/blackswan.jpg" rel="lightbox[roadtrip]"title="Blackswan"> <img src="thumbnails/blackswan_jpg.jpg"></td>
<a href="images/Windmill.jpg" rel="lightbox[roadtrip]"title="Windmill"> <img src="thumbnails/windmill_jpg.jpg"></td>
<a href="images/F1_2.jpg" rel="lightbox[roadtrip]"title="F1_2"> <img src="thumbnails/F1_jpg.jpg"></td>
<a href="images/Orang.jpg" rel="lightbox[roadtrip]"title="orangutan"> <img src="thumbnails/Orang_jpg.jpg"></td>
<a href="images/Flamingo.jpg" rel="lightbox[roadtrip]"title="Flamingo"> <img src="thumbnails/Flamingo_jpg.jpg"></td>
<a href="images/Roquebrun.jpg" rel="lightbox[roadtrip]"title="Roquebrun"> <img src="thumbnails/Roquebrun_jpg.jpg"></td>
<a href="images/Thistle.jpg" rel="lightbox[roadtrip]"title="Thistle"> <img src="thumbnails/Thistle.jpg"></td>
<a href="images/ligtning Final PS.jpg" rel="lightbox[roadtrip]"title="Storm"> <img src="thumbnails/ligtning Final PS_jpg.jpg"></td>
<a href="images/Sky.jpg" rel="lightbox[roadtrip]"title="Sky"> <img src="thumbnails/Sky_jpg.jpg"></td>
</div>
<div id = "footer">
<h3>temp: this is for the footer<h3>
</div>
</body>
</html>