|
Ryokotsusai -> RE: the perigramma used as bkgd to above in all subpages but, they are not the same height (4/9/2008 20:24:06)
|
I'm not sure if I understand the question, but if you want to use that same background image on different sized pages, you could divide it into smaller sections and have them repeat down the table, which could shorten the load time as well e.g.
.myclass {
background-image:url(path/to/file.gif);
background-repeat:repeat-y;
}
here is the picture divided up: [image]http://www.codeburst.org/fls/mgs/Untitled-1_02.gif[/image] [image]http://www.codeburst.org/fls/mgs/Untitled-1_04.gif[/image] [image]http://www.codeburst.org/fls/mgs/Untitled-1_06.gif[/image] [image]http://www.codeburst.org/fls/mgs/Untitled-1_08.gif[/image] [image]http://www.codeburst.org/fls/mgs/Untitled-1_10.gif[/image]
|
|
|
|