PDA

View Full Version : Image As Frame Border?


esntric
09-10-2002, 09:06 PM
How can I set an image as a Frame Border?

Thanks in advance. :)

zoobie
09-12-2002, 04:40 PM
Well, I suppose you could do it a few ways. You could make a table with it's backround repeating and nest another table(s) within. You could also just make an image of a whole picture frame and layer whatever on top. :D

esntric
09-12-2002, 04:43 PM
Alright, thank you.

I just didnt want to waste my time setting up a table if there was a simple attribute to place into the FrameSet code or such.

;)

Mr J
09-12-2002, 07:13 PM
You could have a play with something like this:

Change pic1.gif to your own


<HTML xmlns:v = "urn:schemas-microsoft-com:vml">
<HEAD>
<style>
v\:* {BEHAVIOR: url(#default#VML)}
</style>
<TITLE>Document Title</TITLE>
</HEAD><BODY>
<v:roundrect style="width:200px;height:200px" strokecolor="red" strokeweight="15px">
<v:stroke filltype="frame"src="pic1.gif" /><v:textbox>

<table border=0><tr>
<td>This is a sample of VLM.
<P>Vector Markup Language.
<P>A table within an effect.
<P>Think this may be IE5+
</td></tr></table>
</v:textbox>
</v:roundrect>
</BODY></HTML>