How to center an image

This is a discussion on "How to center an image" within the Starting Out section. This forum, and the thread "How to center an image are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Starting Out

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jun 12th, 2007, 01:08
Reputable Member
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
How to center an image

How do you center and image?

I have various methods but they don't work or they fail validation.

Here is my HTML
Code: Select all
<div id="header">
<img src="example.gif" />
</div>
Thanks,
Pádraig.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jun 12th, 2007, 01:24
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

You'll have to explain a bit more .... center where?!?!

The entire site?

CSS
Code: Select all
body {
   background: #fff url(example.gif) no-repeat 50% 50%;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jun 12th, 2007, 01:36
Reputable Member
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

I want to center the image in the header.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jun 12th, 2007, 02:26
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

You'll have to apply some css to the image and give it margin: 0 auto;
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jun 12th, 2007, 06:17
Highly Reputable Member
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

Code: Select all
<div id="header">
<img src="example.gif" id="header_image" />
</div>
in the stylesheet:
Code: Select all
#header { text-align:center; }
#header_image { margin:0px auto; }
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jun 12th, 2007, 07:38
Reputable Member
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

So, would this be wrong?

CSS
Code: Select all
.logo {
    padding: 0 50px 0 50px;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jun 12th, 2007, 11:05
Most Reputable Member
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

Quote:
Originally Posted by Pádraig View Post
So, would this be wrong?

CSS
Code: Select all
.logo {
    padding: 0 50px 0 50px;
}
That would only work if your page/container was exactly 100px wider than your image, and your image had no margins.

Go with Karinne's method if the image is decoration not content.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jun 12th, 2007, 12:06
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

Yeah ... to center an image in your header I would do

Code: Select all
#header {
    background: #fff url(image.jpg) no-repeat 50% 50%;
    width: 700px;
    height: 120px;
}
Just change the width and height.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Jun 12th, 2007, 12:27
Reputable Member
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to center an image

Yeah, okay!

Thanks,
Pádraig.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
center, how, image

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
how can i center this? djcritch Web Page Design 6 Feb 25th, 2008 07:06
Position image in the dead center of my webpage Fysicus Web Page Design 7 Sep 26th, 2007 08:38
Center a Swf Help?? nutbolt Web Page Design 20 Apr 9th, 2007 10:21
center align text/background image Lchad Web Page Design 5 Dec 5th, 2006 10:40
Center image within div hessodreamy Web Page Design 6 Nov 28th, 2005 11:58


All times are GMT. The time now is 03:59.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42