theme design problem in frontpage 2003

G

Guest

Hi all, I made a theme for my website in photoshop and saved it as jpeg and
was able to create a new theme using it but when i applied to the page the
pattern repeated itself and i don't know how to fix it. I even used it as a
background but had same problem. when i created my theme in photoshop i made
sure that the size of theme and my page in frontpage is same size but still
didn't work :( any suggestions anyone ?????
 
R

Ronx

Web pages do not have sizes - they are as wide as the browser window
(anything between 100px to 2500px), and as long as the content requires.
Background images will always tile to fill the space available - if the
space is too small the image will be cut off.

Set a background colour to compliment the image, then use CSS to stop
the tiling:

In code view, in the <head> section, add:

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

This will place the image in the centre of the page (horizontally and
vertically) with a blue background on the areas the image does not
cover.

Change the colour to suit your page and image and change the
path/imagename to your image
 
S

Stefan B Rusynko

Or if you are using a theme - Modify the Theme to add the "watermark" style:
Format | Theme | Modify/Customize | Text - select More Text Styles
Select the body tag and then Modify | Border | Shading and select
Repeat - select no-repeat
Attachment - select fixed
Vertical Position - select center
Horizontal Position - select center
OK|OK|OK|OK & Save As a new theme name


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Web pages do not have sizes - they are as wide as the browser window
| (anything between 100px to 2500px), and as long as the content requires.
| Background images will always tile to fill the space available - if the
| space is too small the image will be cut off.
|
| Set a background colour to compliment the image, then use CSS to stop
| the tiling:
|
| In code view, in the <head> section, add:
|
| <style type="text/css">
| body {
| background:blue image:url(images/backgd.jpg) center no-repeat;
| }
| </style>
|
| This will place the image in the centre of the page (horizontally and
| vertically) with a blue background on the areas the image does not
| cover.
|
| Change the colour to suit your page and image and change the
| path/imagename to your image
| --
| Ron Symonds - Microsoft MVP (FrontPage)
| Reply only to group - emails will be deleted unread.
| FrontPage Support: http://www.frontpagemvps.com/
| http://www.rxs-enterprises.org/fp
|
|
|
| message |
| > Hi all, I made a theme for my website in photoshop and saved it as jpeg and
| > was able to create a new theme using it but when i applied to the page the
| > pattern repeated itself and i don't know how to fix it. I even used it as a
| > background but had same problem. when i created my theme in photoshop i made
| > sure that the size of theme and my page in frontpage is same size but still
| > didn't work :( any suggestions anyone ?????
|
 

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