|
bobby -> RE: making those nice templates/layouts (2/21/2003 19:40:35)
|
For graphics and page layout / design, this thread in the Graphics forum might be helpful: http://www.frontpagewebmaster.com/tm.asp?m=102318&p=1&tmode=1&smode=1 As far as your other questions go... Nesting tables can come in handy for tabularly displaying data... If you already use a table for your page layout you would need to create another table inside it to display a nicely formatted list of names, titles, and email addresses, for example. Or a list of item numbers, descriptions, and prices... since your main table is there for formatting, you would need to create another table inside that one to handle the new data... (or at least it' s an option) The reason tables delay your page load, is that the browser needs to process EVERYTHING in the table before it begins to display it... So if you have a table nested inside another table the browser first starts to process the main table... then gets to the nested table and has to stop, and process the new table... then it goes back to the original table to finish processing it. When all of that processing gets done it finally displays the result on the monitor... you can imagine how much slower a page would load if you had tables nested 5 or 6 deep! [:o] Drawing tables doesn' t give you the flexibility that you have when using FP' s table component... and when you learn how to hand code tables in HTML view you might notice that you are free' d up even more... Sizing a table is usually best done with % instead of pixels... If you set your layout table to be 100% in width, it will stretch to fill the browser window. If you set the width to 750px, a person who still browses at 640 x 480 resolution would have to scroll sideways to see it all... The main thing to remember when laying out tables is that all of your individual column widths must add up to the total width of the table, or you' ll have problems... For example, if your table is set to 100% and you have 4 colums set to 20%, 40%, 25% and 25% (total of 110%) you' ll see problems in the browser (especially non-IE browsers) And you' re right, Swoosh is awesome. [:p]
|
|
|
|