we had tried css, as so:
<style>
td.bgthis {
background-image: url(scroll_rs.gif);
background-position : top left;
backgRound-repeat: no-repeat;
}
</style>
if you have suggestions for making it stretch, that would be great
we had started playing with the table idea earlier, but due to the curves in the scroll, that may not work out
http://onlinescratchpad.co
Main Topics
Browse All Topics





by: lherrouPosted on 2005-10-03 at 05:36:36ID: 15005827
Stilett0,
m. If you want to learn CSS, try this site: http://www.w3schools.com/c ss/default .asp.
That's an interesting idea, and it would be nice to implement properly. In the long run, one thing that would help is using CSS to do your page layout, rather than using tables, which were never intended for layout. A great example site of the power of CSS layout is http://www.csszengarden.co
One thing you'll need to address is that your cell is square, but your scroll is not, so you'll need to reformat your text flow to fit the shape of the scroll. You may be best off, if you stay with your table-based layout, using a new table for the interior of the cell where your text is... and break your scroll into 5 parts, a top, a bottom, L & R sides, and a tiling (repeating) interior.
top scroll sec.
----------------
l | |r
s | |s
i | |i
d | |d
e | |e
----------------
bottom sec.
I hope these comments help.
LHerrou