Hey there Ed,

As for the Puppy. I was thinking about what you wrote last night - and
just contemplating that the same thing can be said for humans - that at
almost any instance in time - there is someone on this planet who dies -
and, about the same time - there is a new birth. Of course, the Puppy
doesn't actually die because someone mentioned Frames! But, it sure
sounds funny...

As for your HTML code clip below. I should not have underestimated my
work with HTML - as I have also worked with Tables in the past - as my
current Gallery actually has code I built - HTML Snippets - that include
Tables. 

But, I guess it still goes back to the same question. 

Let's say - the left column has the menu. And, then the right column of
the Table has the main content. But, does this mean that for EVERY page
of content - there is also the left column Menu? And, therefore Every
webpage has the same content repeated - like the left side menu, the
Gallery logo at the top, and even Footer stuff at the bottom! Am I right
- or am I missing something?

I know that with Frames - if I clicked a left side menu button - it
would actually then launch different webpages within another Frame.
Therefore, the menu code runs only once - but, the content changes based
upon someone clicking a menu button. 

-K-

-----Original Message-----
From: [email protected] [mailto:[email protected]]
On Behalf Of Ed Leafe
Sent: Monday, January 17, 2011 8:10 PM

On Jan 17, 2011, at 7:48 PM, Kurt @ VR-FX wrote:

> Hey Ed - you cracked me up with your comment about the Puppy!

        What, you think I was kidding? :)

> If I had the time - I might actually enjoy learning CSS. But, my time
is 
> limited - and I'm working also on other side projects of higher
priority 
> - and that's besides my day job that forces me to be 12 hours out of
the 
> house every day! And, I also have a young son at home who I need to 
> spend time with. So - that's why my time is limited - and I just want
to 
> figure an EASY solution to my current situation...


        HTML tables will also work, and they're simple enough to learn
quickly. The main thing to remember is that you can nest them; so to
make a page with a column on the left, create a one-row, two-column
table, and set the left column to width="33%" (or whatever looks best
for you). In the left column's cell, you add the content you want
displayed on the left side. In the right column's cell, you add the main
page content; this can be laid out in another table, or using whatever
works for you. I've added a basic sample after my sig.


-- Ed Leafe


<html>
<head>
        <meta http-equiv="content-type" content="text/html;
charset=utf-8">
        <title>Untitled</title> 
</head>
<body>
<table border="0" width="95%" cellspacing="10">
        <tr valign="top">
                <td>
                        left side stuff
                </td>
                <td>
                        <table border="0" width="67%" cellspacing="5">
                                <tr>
                                        <td>
                                                main stuff 
                                        </td>
                                </tr>
                                <tr>
                                        <td>
                                                more main stuff 
                                        </td>
                                </tr>
                                <tr>
                                        <td>
                                                still more main stuff 
                                        </td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>
</body>
</html>


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/289ea162f5642645b5cf64d624c66a1409df1...@us-ny-mail-002.waitex.net
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to