Forums
This topic is locked
Watermark Extension?
Replies
Replied 28 Apr 2002 17:11:49
28 Apr 2002 17:11:49 Mark Reynolds replied:
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
Any one know where i can find a watermark extension that will let me make a frame with a background that doesnt scroll with the frame?
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
I guess you have tried inserting the code "fixed" next to the bg file like so...
bg="fixed"
Regards
Mark
Manager DWZone.net
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
Any one know where i can find a watermark extension that will let me make a frame with a background that doesnt scroll with the frame?
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
I guess you have tried inserting the code "fixed" next to the bg file like so...
bg="fixed"
Regards
Mark
Manager DWZone.net
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
Replied 29 Apr 2002 04:11:15
29 Apr 2002 04:11:15 dean aldridge replied:
if you place this inside the body tag:
bgproperties="fixed"
it will prevent the background scrolling but only in internet explorer, it doesn't work in netscape communicator. i haven't heard of a way of doing this for netscape.
bgproperties="fixed"
it will prevent the background scrolling but only in internet explorer, it doesn't work in netscape communicator. i haven't heard of a way of doing this for netscape.
Replied 10 May 2002 10:33:10
10 May 2002 10:33:10 Julio Taylor replied:
I have a solution, but only using JS to do it. here goes
<script language="JavaScript1.2">
if (document.all||document.getElementById)
document.body.style.background="url('../../../britney_naked.gif') white top right no-repeat fixed "
</script>
where "britney_naked.gif" is your favourite background picture in the world (it's mine, at least). Two things to remember are that the relative path to the file needs to be accurate (duh) and that the script needs to be inserted somewhere in the body, preferably below the <BODY> tags. Also, you can change the properties like top(bottom), right(left/center) and the repeat/fixed attributes too.
this can also be done in CSS i have heard but i cannot figuire out how to implement it.
i hope this helps
-- J
<script language="JavaScript1.2">
if (document.all||document.getElementById)
document.body.style.background="url('../../../britney_naked.gif') white top right no-repeat fixed "
</script>
where "britney_naked.gif" is your favourite background picture in the world (it's mine, at least). Two things to remember are that the relative path to the file needs to be accurate (duh) and that the script needs to be inserted somewhere in the body, preferably below the <BODY> tags. Also, you can change the properties like top(bottom), right(left/center) and the repeat/fixed attributes too.
this can also be done in CSS i have heard but i cannot figuire out how to implement it.
i hope this helps
-- J