|
| |
|
|
chefsballs
Posts: 45 Joined: 8/18/2004 From: Kent, UK Status: offline
|
RE: Background Images Move - 11/2/2005 6:08:17
Do i need to apply another css style for my local machine?
|
|
|
|
chefsballs
Posts: 45 Joined: 8/18/2004 From: Kent, UK Status: offline
|
RE: Background Images Move - 11/5/2005 7:02:46
Thank you all for trying, i have sorted this out now via frontpage, heres how: Here's How: 1. Open the page you want to add the background image in Microsoft FrontPage. 2. Click on the "Format" menu and choose "Style". In that dialog box, highlight the body tag in the "styles" box. 3. Click "Modify" and then choose "Border..." in the "Format" menu. 4. Switch to the "Shading" tab, and browse to the background picture you want to use. 5. Change the repeat to "no-repeat" and the attachment to "fixed". Adjust the position with the horizontal and vertical position drop-down menus. 6. Click "OK" three times and your picture will appear in the Normal and Preview windows. SO HAPPY!!
|
|
|
|
chefsballs
Posts: 45 Joined: 8/18/2004 From: Kent, UK Status: offline
|
RE: Background Images Move - 11/5/2005 7:08:21
Oh and the code is <style> <!-- body { background-image: url('images/test_bgr.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-position: center } --> </style> </head>
|
|
|
|
Kitka
Posts: 2515 Joined: 1/31/2002 From: Australia Status: offline
|
RE: Background Images Move - 11/5/2005 17:21:34
It is excellent that you sorted it out. But I'm quite puzzled because the code is essentially the same as you had in post 29 (below) as not working, except you have now added "fixed" as a selector. <style type="text/css">
body
{
background: url('images/test_bgr.jpg') no-repeat center;
}
</style> When expressed neatly as one declaration rather than four, your now-working code from post 33 becomes this: <style>
<!--
body { background: url('images/test_bgr.jpg') no-repeat fixed center; }
-->
</style> So you see there is little difference between them but formatting. However you did it though, I'm really delighted you got it sorted.
_____________________________
Kitka **It is impossible to make anything foolproof because fools are so ingenious.**
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|