Reputation: 11
Here is the link to a site I am working on for a friend - http://jayclarkephotography.com/
I am trying to center the logo. I have tried various ways, but am new to making websites, so I think I am missing something.
Upvotes: 0
Views: 39
Reputation: 11961
On the a
inside the header, add the following CSS:
display: block;
width: 340px;
margin: 0 auto;
You might want to ajust the padding of the header, because the logo is not dead center.
Upvotes: 0
Reputation: 2526
You can acheive this through CSS, tell the browser you want auto margins on the left and right, add this to the image tag
style="margin:0 auto;"
Upvotes: 0