View Full Version : Anchors in tables and frames


HolySkittle
07-19-2003, 02:38 PM
For my webpage, I have a basic 2 row-2 column table. The bottom right section is the largest of the four, and in it I have an inline frame. In the upper right section, I have several links which I intend to have open in the i-frame. Is there a way I could set the usual "#codename" anchoring system to have the link lead to another section of the i-frame? I understand both linking to the i-frame, and using the anchoring system, but I want to encorporate them both.

kittycat
07-19-2003, 05:06 PM
In the link, type in the URL including anchor, plus the target.
<a href="http://site.com/page.html#anchor" target="frame">
I'm not sure if it will have the same effect as when the links are on the same page as the anchors (ie this site), but that might not be possible when linking to a frame.

HolySkittle
07-19-2003, 06:53 PM
Thank you soooooo much, kittycat! Also, do you know how to make it so the background of the i-frame is transparent? I tried leaving the space blank, but it came up white. Is there any way to do this?

JennaCaitlin
07-20-2003, 12:51 AM
Add this code to your iframe:

style="FILTER: chroma (color=#CCFFFF)

Set the hex code #CCFFFF as your background color and it'll make the iframe transparent.

You can use whatever hex code you want. I just chose #CCFFFF as an example.