Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old October 2nd, 2008, 05:45 PM
CJM
Guest
 
Posts: n/a
Default Centering Image in <DIV>

I've inserted a new banner in an existing page and I want the banner image
to be centered (horizontally) within its container. I'm not bothered whether
the accompanying line of text is restricted to the width of the image and
centered, or whether is simply fills the width of the container.

I've tried various things to achieve this (e.g setting margins to auto) but
I'm not having much luck.

The URL for the page is: http://www.eminox.es

And the key stylesheet is: http://www.eminox.es/_lib.css/home.css

The containing DIV has the following styling:

..hl06 {
width:510px;
height:100px;
position: absolute;
top: 66px;
left: 230px;
font-size: 75%;
padding: 4px 10px;
}

And the relevant HTML snippet is:

<div class="hl06 yellow">
<img src="/home/images/fiaa_468x60.gif" height="60" width="468" alt="FIAA
Feria de madrid 14 - 17 Octubre 2008, Pabellón 9 Puesto C27">
Visítenos en la <strong>Feria Internacional del Autobús y Autocar</strong>
en Madrid, del 14 al 17 de octubre <strong>Pabellón 9 Puesto C27</strong>.
</div>

As you can see, the container is 51-px wide, and the image is 470px wide; I
considered manually fixing the position, but I'd prefer to master a more
fluid technique. I've stripped out the abortive crap from previous attempts,
so hopefully it's as near to a blank canvas as we will get.

Thanks in advance.

CJM


  #2  
Old October 2nd, 2008, 05:55 PM
Andy Dingley
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
Quote:
I've tried various things to achieve this (e.g setting margins to auto) but
I'm not having much luck.
CSS has two notions of "centring"

Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.
  #3  
Old October 2nd, 2008, 06:15 PM
CJM
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>



"Andy Dingley" <dingbat@codesmiths.comwrote in message
news:4ff25660-ff45-43d0-afa3-9c914f5192f3@m74g2000hsh.googlegroups.com...
Quote:
On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>
Quote:
>I've tried various things to achieve this (e.g setting margins to auto)
>but
>I'm not having much luck.
>
CSS has two notions of "centring"
>
Block-behaving elements will center if you set their own margins to
auto.
>
Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.
I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto and
it's width to 470px, but that didn't work either.

  #4  
Old October 2nd, 2008, 06:25 PM
Irina Rempt
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

CJM wrote:
Quote:
"Andy Dingley" <dingbat@codesmiths.comwrote in message
news:4ff25660-ff45-43d0-afa3-9c914f5192f3@m74g2000hsh.googlegroups.com...
Quote:
Quote:
>Block-behaving elements will center if you set their own margins to
>auto.
>>
>Inline-behaving elements (and this includes <imgwith default CSS
>settings) will respond to setting text-align on their parent (i.e. the
><div>) instead.
>
I'd considered text-align, but I don't want the text part of it centered.
>
So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.
I had a similar problem which I solved by setting both "text-align: center"
on the containing box and "margin: 0 auto" on the img itself. If you don't
want the text centered, you could either set "text-align: left" for the
text (and have that rule after the div text-align rule) or have the image
and the text each in their own <divcontainer.

Have you tried "display: block" for the img to make it behave as a block?

Irina

--
"Of course it is happening inside your head, Harry, but why on earth
should that mean that it is not real?" --Albus Dumbledore
http://www.valdyas.org/foundobjects/index.cgi Latest: 01-Oct-2008
  #5  
Old October 2nd, 2008, 06:35 PM
Adrienne Boswell
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

Gazing into my crystal ball I observed "CJM" <cjmnews04@example.com>
writing in news:6kkdj4F8a956U1@mid.individual.net:
Quote:
>
>
"Andy Dingley" <dingbat@codesmiths.comwrote in message
news:4ff25660-ff45-43d0-afa3-9c914f5192f3
@m74g2000hsh.googlegroups.com.
Quote:
..
Quote:
>On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>>
Quote:
>>I've tried various things to achieve this (e.g setting margins to
>>auto) but
>>I'm not having much luck.
>>
>CSS has two notions of "centring"
>>
>Block-behaving elements will center if you set their own margins to
>auto.
>>
>Inline-behaving elements (and this includes <imgwith default CSS
>settings) will respond to setting text-align on their parent (i.e.
>the <div>) instead.
>
I'd considered text-align, but I don't want the text part of it
centered.
>
So I wrapped the the whole lot in a <spanand set it's margins to
auto and it's width to 470px, but that didn't work either.
>
>
Span is inline. Use a block level element, or display an inline element
as block.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

  #6  
Old October 2nd, 2008, 06:55 PM
Scott Bryce
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

CJM wrote:
Quote:
So I wrapped the the whole lot in a <spanand set it's margins to
auto and it's width to 470px, but that didn't work either.
Because a span is in-line and not a block. In-line elements cannot be
centered. Centering something that is in-line does not make sense. If
you want an image inside a div to be centered, but not the text inside
the div, you may need to place the image and text inside thier own divs.
  #7  
Old October 2nd, 2008, 08:15 PM
Gus Richter
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

CJM wrote:
Quote:
>
>
"Andy Dingley" <dingbat@codesmiths.comwrote in message
news:4ff25660-ff45-43d0-afa3-9c914f5192f3@m74g2000hsh.googlegroups.com...
Quote:
>On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>>
Quote:
>>I've tried various things to achieve this (e.g setting margins to
>>auto) but
>>I'm not having much luck.
>>
>CSS has two notions of "centring"
>>
>Block-behaving elements will center if you set their own margins to
>auto.
>>
>Inline-behaving elements (and this includes <imgwith default CSS
>settings) will respond to setting text-align on their parent (i.e. the
><div>) instead.
>
I'd considered text-align, but I don't want the text part of it centered.
>
So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.

<span class="banner"><img style="display:block;margin:auto;" src="......

--
Gus
  #8  
Old October 2nd, 2008, 08:55 PM
Bergamot
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>


Gus Richter wrote:
Quote:
CJM wrote:
Quote:
>>
>I'd considered text-align, but I don't want the text part of it centered.
>>
>So I wrapped the the whole lot in a <spanand set it's margins to auto
>and it's width to 470px, but that didn't work either.
>
<span class="banner"><img style="display:block;margin:auto;" src="......
The <spanis superfluous if its only content is the <img>.

--
Berg
  #9  
Old October 2nd, 2008, 09:45 PM
Ben C
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

On 2008-10-02, Scott Bryce <sbryce@scottbryce.comwrote:
Quote:
CJM wrote:
Quote:
>So I wrapped the the whole lot in a <spanand set it's margins to
>auto and it's width to 470px, but that didn't work either.
>
Because a span is in-line and not a block. In-line elements cannot be
centered. Centering something that is in-line does not make sense.
It does make sense and you can do it-- by setting text-align on the
container.
Quote:
If you want an image inside a div to be centered, but not the text
inside the div, you may need to place the image and text inside thier
own divs.
I think the easiest thing here, as has been suggested, is to get rid of
the span altogether and give the img display: block and auto left and
right margins.
  #10  
Old October 3rd, 2008, 02:05 AM
Gus Richter
Guest
 
Posts: n/a
Default Re: Centering Image in <DIV>

Bergamot wrote:
Quote:
Gus Richter wrote:
Quote:
>CJM wrote:
Quote:
>>I'd considered text-align, but I don't want the text part of it centered.
>>>
>>So I wrapped the the whole lot in a <spanand set it's margins to auto
>>and it's width to 470px, but that didn't work either.
><span class="banner"><img style="display:block;margin:auto;" src="......
>
The <spanis superfluous if its only content is the <img>.

Actually it isn't the only content, but also contains subsequent text,
however, pursuant to your comment I checked without the pertinent SPAN
tags and it is not necessary, at least for Firefox.

--
Gus
 

Bookmarks

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 Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles