PDA

View Full Version : Centering Banner


jocko
Nov-04-2009, 07:37 AM
I searched but did not find a quick solution to my problem.

I can't get my banner to center on the page.

Am I missing something?

#my_banner {
width: 800px;
height: 200px;
margin: 0 auto;
margin-top: 5px;


background: url(http://www.chadjockphotography.com/photos/159623146_TgQfh-M.jpg) no-repeat;

chadjockphotography.com

jfriend
Nov-04-2009, 10:07 AM
Change the width and height to be the actual size of the image you are using and it will center:

#my_banner {
width: 600px;
height: 150px;
margin: 0 auto;
margin-top: 5px;
background: url(http://www.chadjockphotography.com/photos/159623146_TgQfh-M.jpg) no-repeat;
}

jocko
Nov-04-2009, 10:47 AM
Thanks!

I knew it would be something simple. :doh