English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a "curtain" type background as surrounding frames, but I would like to add tassels along the bottom or sides of the frames. Is there a way to add a repeating tassel graphic as a frame border?

2007-04-26 10:02:07 · 2 answers · asked by jkurrle 2 in Computers & Internet Programming & Design

2 answers

Awkward, but you'll need to define a separate (footer-type?) div at the bottom or along the side, with their own (css) background images, hence:

div#left { background-image: url("left-tassle.jpg"); float: left; width: 5%; }
div#main { background-image: url("main-curtain.jpg"); float: left; width: 85%; }
div#right { background-image: url("right-tassle.jpg"); float: left; width: 5%; }
div#footer { background-image: url("bottom-tassle.jpg"); clear: both; width: 95%; }

You may have to diddle percentages to make it look JESSS RIGHT!
OOps I forgot to mention: in the divs you need to set up "background-repeat: repeat-y;" whenever appropriate...

2007-04-26 10:14:24 · answer #1 · answered by fjpoblam 7 · 0 0

you shouldn't be using frames. they are difficult for handicaps and search engines to navigate.

2007-04-26 10:10:31 · answer #2 · answered by Anonymous · 0 0

fedest.com, questions and answers