PDA

View Full Version : Frames and tables



FatBeat
July 30th, 2003, 03:40 PM
Hello, I have 2 questions.
I am haveing trouble designing my web page. The thing is i read about tables and frames on the forum. I know what frames are but i dont really understand tables.

Here is my question, I want to do my web site in frames, I want it to have a Top, Middle, And bottom. The place i want to load and change when they click on a button is in the midlle part of the frame. Can somebody help me or tell me where i could learn how to do that and where i could learn what are tables and how to use them.

thank you very much.

PS
i am using dreamweaver mx
I have a layout of the web site on paper but i want to make the layout on dreamweaver

RussianBeer
July 30th, 2003, 07:34 PM
For frames:

When you create your page, there are diffrent types of frames you can select, just select the one you need. Thats the simplest method.

grimdeath
July 30th, 2003, 07:58 PM
well if you post a screenshot of your frames maybe i can makie it for you in tables and i can try to explain a bit for you

:run: russianbeer still no time to make the tables tutorial :(

FatBeat
July 31st, 2003, 05:34 PM
I will try to put that up for you as son as i can

thank you very much

DigitalPimp
July 31st, 2003, 06:10 PM
Originally posted by grimdeath
well if you post a screenshot of your frames maybe i can makie it for you in tables and i can try to explain a bit for you

:run: russianbeer still no time to make the tables tutorial :(

Why don't you write 1 grim?

grimdeath
August 1st, 2003, 12:21 AM
ive been trying to but i have no time Digital im too busy working and going to college and im practicing maya on my freeweekends when i dont have my kids, but i finish college the 21 of august :beam: cant wait

FatBeat
August 1st, 2003, 05:12 PM
i hope this helps you. the screenshot is there. I dont know if i did it right but o well.

thanks again

grimdeath
August 2nd, 2003, 12:31 AM
if your using flash theres no need to use frames you can just load movie clips into a target sort of like frames but diffrent, you cannot do this with tables if thats what you meant so maybe i misunderstood you anyways let me know what is it youre really trying to do ;)

b.rich
August 4th, 2003, 02:40 PM
the code for the frames is:

<p><font face="Tahoma" size="2">&nbsp;&lt;frameset rows=&quot;64,*,64&quot;&gt;
&lt;frame name=&quot;top&quot; scrolling=&quot;no&quot; noresize target=&quot;main&quot;&gt;
&lt;frameset cols=&quot;150&quot;&gt;
&lt;frame name=&quot;main&quot;&gt;
&lt;/frameset&gt;
&lt;frame name=&quot;bottom&quot; scrolling=&quot;no&quot; noresize target=&quot;main&quot;&gt;</font></p>

as for the tables (based on your drawing):

in the top frame:


<p><font size="2" face="Tahoma">&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse:
collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100%&quot; id=&quot;AutoNumber1&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;100%&quot; colspan=&quot;2&quot; dir=&quot;ltr&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;50%&quot; dir=&quot;ltr&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;50%&quot; dir=&quot;ltr&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</font></p>


in the middle frame:


<p><font face="Tahoma" size="2">&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;
style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100%&quot;
height=&quot;100%&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;33%&quot; rowspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;33%&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;34%&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;33%&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;34%&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</font>
&nbsp;</p>
this code will more than likely need to be manipulated to work for what you are doing but i figured you can paste this in there and try to play around with it untill you get it right. (Which is probably how everyone in here learned :) but if its still to complicated i will explain and help more just ask.