What is the name of your template? Can you post a link to your site?
What is the name of your template? Can you post a link to your site?
Thx gjh42,
I looked in my template folder > css and made the same changes
width:750px
removed: repeat-x
and it works:-)
The site is still local, so I can't give you the url yet
My header is 750px long and begins at the left of my screen. I'd like to see hem centered.
I tried to insert the following code to for the header:
horizontal-align:center;
but the header is still starting at the upper left of the screen.
Does anyone see what I do wrong?
To position the background image within #logoWrapper, try something like
background-position: top center;
To position #logoWrapper in the header, try
margin: auto;
Code:#logoWrapper{ background-image: url(../images/header_bg.jpg); background-position: top center; background-color: #ffffff; height:75px; width:750px; margin: auto; }
Thx:-)
it worked just fine.