sherri
03-04-2003, 08:30 PM
What do frames look like?Can I make frames dotted or add cool effects to them?
|
View Full Version : Frames!!!!!!!!!! sherri 03-04-2003, 08:30 PM What do frames look like?Can I make frames dotted or add cool effects to them? Celeris 03-04-2003, 08:33 PM That's basically only possible with inline frames. Then you can use CSS to add flavor to them. Sheila 03-05-2003, 05:44 AM What do frames look like? See: http://www.lissaexplains.com/frames.shtml Originally posted by Celeris That's basically only possible with inline frames. Not true.....You can add dotted and so forth to normal frames too.... Example: <html> <head> <title>My Page</title> </head> <frameset cols=20%,80%> <frame src="left.html" name="leftside" frameborder=0 framespacing=0 style="border: 1 dotted #800000"> <frame src="right.html" name="rightside" frameborder=0 framespacing=0 style="border: 1 dotted #800000"> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> sherri 03-14-2003, 07:53 PM Ok I want to put frames on my page.Do I have to download anything?Can I just copy and paste a code and have the frames in a second? lefty 03-14-2003, 10:29 PM Did you read the link Shelia posted? It's alllll explained in there. Celeris 03-15-2003, 01:57 AM *blink* Thanks for pointing that out, Sheila... I had totally forgotten about the style="css stuff" codes! Anyway, like lefty said... Check LEIA. |