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/[email protected]
** 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.