Angus at InfoForce Services wrote:

Matthew

What I am trying to do Is:

1. get the "mackinnondress.gif" to extend from the left margin to the right margin,

2. Get the font in the "h1 {" to display, and

3. Move the document text to beneath the flag.

Angus,

1. If you make the following changes to the h1 of your CSS, the image will display:

h1 {
color: #FFFFFF; background-image: URL(mackinnondress.gif);
   background-repeat:  repeat;
   font-size: 220%;
   font-family: Arial, Heveltica, Sans-Serif;
   font-weight: Bold;
   text-align: center;
   padding: 0;
   min-height: 152px;
}

You can't have the repeat declaration in the background-image property. And in order to make it extend fully, add min-height.

2.  I don't see any text in the h1.

3. Fixing your first problem should take care of the text not being where you want it.
Hope this helps,
Matthew
______________________________________________________________________
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