Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-24-2005, 07:46 AM   PM User | #1
Len Whistler
Senior Coder

 
Len Whistler's Avatar
 
Join Date: Jul 2002
Location: Vancouver, BC Canada
Posts: 1,323
Thanks: 26
Thanked 100 Times in 100 Posts
Len Whistler is on a distinguished road
Center logo image with externial CSS

I would like to center the logo image on all pages with an external CSS file. Below I have the CSS code but can't figure out the code to center the image, what do I need to add?



body {
margin:0px;
padding:0px;
font-family:verdana, arial, helvetica, sans-serif;
color:#333;
background-color:white;
background-image: url(logo.jpg);
background-repeat: no-repeat;
}

Thanks

Leonard Whistler
www.stubby.ca
__________________
Leonard Whistler
Len Whistler is offline   Reply With Quote
Old 02-24-2005, 07:55 AM   PM User | #2
rmedek
Senior Coder

 
Join Date: Nov 2003
Location: Minneapolis, MN
Posts: 2,879
Thanks: 2
Thanked 65 Times in 56 Posts
rmedek is on a distinguished road
You could center it and put the other rules all together like so:
Code:
background: url(logo.gif) no-repeat top center #fff;
or if you want to keep it longhand just add:
Code:
background-color:white;
background-image: url(logo.jpg);
background-repeat: no-repeat;
background-position: top center;
"top" could be top, center, or bottom... here's the w3schools page on this:

http://www.w3schools.com/css/css_ref...asp#background

Hope this helps,
__________________
drums | web

Last edited by rmedek; 02-24-2005 at 08:00 AM..
rmedek is offline   Reply With Quote
Old 02-24-2005, 07:57 AM   PM User | #3
rmedek
Senior Coder

 
Join Date: Nov 2003
Location: Minneapolis, MN
Posts: 2,879
Thanks: 2
Thanked 65 Times in 56 Posts
rmedek is on a distinguished road
* deleted *
__________________
drums | web

Last edited by rmedek; 02-24-2005 at 08:00 AM.. Reason: double post... d'oh
rmedek is offline   Reply With Quote
Old 02-24-2005, 03:54 PM   PM User | #4
Len Whistler
Senior Coder

 
Len Whistler's Avatar
 
Join Date: Jul 2002
Location: Vancouver, BC Canada
Posts: 1,323
Thanks: 26
Thanked 100 Times in 100 Posts
Len Whistler is on a distinguished road
Thanks rmedek


Leonard Whistler
www.stubby.ca
__________________
Leonard Whistler
Len Whistler is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:18 AM.


Advertisement
Log in to turn off these ads.