Pictures and FP Themes

R

RBay

Hi. I'm using a background picture with a custom theme as my banner. (I
using a picture as the banner but it wouldn't show up). Anyway, it works
fine on a "regular" monitor, but when I look at my page on a wide screen
monitor, it wraps and adds another copy to the right hand side. What's the
best resolution to save the picture at in order to make sure this doesn't
happen?
 
R

Ronx

I can open my browser to a width of 2560px - do you really want to support
that?

You can use CSS to stop the image tiling (background images tile, not
wrap).
Place this in the head section of the page:

<style type="text/css">
body {
background-image: url(images/background.jpg);
background-repeat: no-repeat;
}
</style>

However, the theme is likely to over-rule this, since CSS for the theme
will appear after the above CSS block in the <head> of the page.
 

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