View Full Version : Help with iframe


agent_x
08-24-2003, 01:12 PM
I am currently using ZonkBoard (http://www.zonkboard.com) on my site (http://agentx.deep-ice.com).
How do I make the scrollbar 2d like I had on my blog.htm?
The shoutbox is external and I have no control over its script. I am only linking it as a iframe. Is it possible to make my textbox dotted too?

MaGiCSuN
08-24-2003, 07:26 PM
the problem with zonkboard is that the whole tagboard is inside the iframe, even the textarea and form fields.

to get the dotted border around your textarea you have to use the second code on the code page from your zonkboard. (log in and then choose "HTML code")

a part of it will be this:

<textarea cols="24" rows="3" name="message" style="font-family: Verdana, Tahoma, Arial;
font-size: 8pt;
background-color: #FFFFFF;
cursor: text"></textarea>

then you add border: 1px dotted #COLOR;. Like this:

<textarea cols="24" rows="3" name="message" style="font-family: Verdana, Tahoma, Arial;
font-size: 8pt;
background-color: #FFFFFF;
cursor: text;
border: 1px dotted #COLOR;"></textarea>

and change COLOR to the hex code of the colour you would like it to be.

Love,
Mirna