Page banners

W

Wayne

I can't seem to get my customized banner (.gif) to size right. It starts to
repeat itself, like wraping around (one and 1/3 banners show up on preview).
Is there a standard banner size? Or is there a page set up area to adjust the
banner size?
 
R

Ronx

You adjust the banner size in a graphics editor.

It seems that you are using the banner as a background image.
Background images will always tile (or crop) to fit the container they
are a background for, unless you use CSS to prevent tiling.
Example using inline styles:

<div style="background: white url(images/background.jpg) center
no-repeat;">
This div has a background image that will only appear once, centered,
no matter how large the div becomes
</div>
 
W

Wayne

OK, I'm getting closer to the resolution. Yes, I'm using an image for the
banner. So how do I use CCS to prevent tiling? Are you suggesting I click on
the HTML tab and insert a new line of code, or modify a line? None of mine
start with <div style=--
I have FP 2002. Any more suggestions?
Thanks, Wayne
 
R

Ronx

You will have to use Code or HTML view to add the CSS to the container -
<td> ?
<td style=" style="background: white url(images/background.jpg) center
no-repeat;">blah blah</td>

The colour is chosen to replace the image for browsers where images are
disabled.
The image is defined in url(...)
And center no-repeat centres the image and stops tiling.
--
Ron Symonds - Microsoft MVP (Expression)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top