Can someone help me align my site please?

Caporegime
Joined
1 Nov 2003
Posts
35,691
Location
Lisbon, Portugal
Hello,

I'm currently rebuilding my site and I'm having some trouble with alignment.

I've created an image to be used as a title for the page but the damn thing is sitting to the right.

Can anyone help?

here's the code

PHP:
<style type="text/css">
<!--
.style4 {font-size: large}
-->
</style>
</head>
<body>
<div id="pageWrapper">
	<div id="header">
	  <p align="center"><img src="title.jpg" alt="Title" width="760" height="280" /></p>
		</div>

Here's a screenshot of what I've got

Clicky

Cheers for any/all help.
 
PHP:
<div id="header">
      <p align="center"><img src="title.jpg" alt="Title" width="760" height="280" /></p>
        </div>

there is no need for the <p> in the header, simply remove the <p> and then add

Code:
#header {text-align:center}
to your css
 
post the link to the site, or paste the markup and css

also, are you going off what you see in the WYSIWYG editor? because you cant always trust what you see there, make sure you load the page in an actual browser to see the real way the page will be displayed.
 
have you previewed this in a browser - if so it it the same?

Sometimes what you see in design view is not how the page renders in the browser
 
Back
Top Bottom