Hello,

Thanks to Roger I was able to get my banner to span 100% of the space.

If you look at the site http://itmbanner.blogspot.com/ with IE6, it is
absolutely perfect. Exactly what I wanted  But, it does not work at all in
Firefox and Netscape. As far as Firefox and Netscape are concerned, I will
settle for the graphic being centered at the top at about 80%, which is what
I figured out they could do prior to this new change. What I am looking for
at this time may or may not be the answer. Is there a way to put the style
that I need for FF and Netscape on there without IE reading it. This is what
I know works for FF and Netscape: 
 
#photo {width: 81%;height: 160px;margin-top:0px;padding-top:1px}
 
When I had that on there, I had this below for IE:
* html #photo {width: 100%;height: 160px;margin-top:0px;padding-top:1px}
 
And those 2 together worked. But, I do not want to use that style for IE now
 I want to use:
 
* html #photo {
  position: relative;   /* sets a new 'positioning context' so the child
image can be 100% */
  left: -7px;  /* get around padding from parent element */
  margin-right: -27px;  /* should be approximately the width of the
right col */
  margin-top:0px;
  padding-top:0px;
}
#photo img {
  width: 100%;
  height: 160px;
}
 
For some reason, FF and Netscape can read this and it is a mess. I tried
putting the other style on there too and that didn't work. So, if there is
an answer to this problem I sure would appreciate the assistance.

Thanks in advance,
Christine
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to