Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BGPROPERTIES=SCROLL ??

Status
Not open for further replies.

davevail

Programmer
Mar 16, 2002
24
US
Hi all, I would this home page to "scroll" so you can see the picture - I set the "body" like this:
<body background=&quot;isr1955.jpg&quot; bgproperties=&quot;scroll&quot;>
but the picture will not scroll, I would like to be able to scroll up&down and see the whole pic - you can see the site and &quot;view source&quot; at Thanks in advance to all responders!
 
Add the following line to the bottom of your HTML - right before your closing </body> tag:
[tt]<div id=&quot;spacer&quot; style=&quot;height:300px;&quot;></div>[/tt]

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Didn't see that in my &quot;webmaster in a nutshell&quot; reference - is that &quot;XSL?
 
No, that's plain old HTML4 with a little CSS thrown in.

XSL looks more like this:
Code:
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl=&quot;[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform&quot;[/URL] version=&quot;1.0&quot;>
<xsl:template match=&quot;workflowprofile&quot;>
 <div class=&quot;wflow_display_div_level_1&quot; onclick=&quot;handleWflowDisplayDiv();&quot; style=&quot;cursor: s-resize; background-image: url(arr_d.gif);&quot;> Workflow Profile: <xsl:value-of select=&quot;@id&quot;/>
  <xsl:apply-templates select=&quot;./state&quot; />
 </div>
</xsl:template>
</xsl:stylesheet>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top