Website Coding

Stuck on a line of code? Find resources and post your coding questions here.

Forum Sponsor (Advertise with us)
Reply
 
Thread Tools Display Modes
    #1 (permalink)  
Old 04-10-2008
JacksonAO's Avatar
Contributing Member
 
Join Date: Mar 2008
Location: Jackson, MI
Posts: 235
Default Columns in an HTML paragraph
Is there a simple way to just have a section of free flowing, wraping text columns within a paragraph? Or do you have to create tables?
__________________
Sarah Bernstein
Jackson Administrative Outsourcing

www.jacksonao.com
Reply With Quote
    #2 (permalink)  
Old 04-11-2008
Tess's Avatar
Senior Member
Company name: Codehead, LLP
Latest blog post: SEO Q&A
 
Join Date: Apr 2007
Location: Portland, OR
Posts: 9,131
Blog Entries: 3
Default Re: Columns in an HTML paragraph
Hmmm, this one's a bit vague...not sure what you mean by 'wrapping text columns' - can you clarify?

Do you mean two columns of text within a given space, as opposed to one? (Maybe it's the word 'paragraph' throwing us off)

Let me know - thanks Sarah!
__________________
Create a welcome packet for new clients with this guide and free templates!

(Available in PDF and Kindle versions)
Reply With Quote
    #3 (permalink)  
Old 04-11-2008
kathiemt's Avatar
Banned
Company name: A Clayton's Secretary
Virtual Assistant - THE Blog: How do I get clients as a Virtual Assistant?
 
Join Date: Nov 2007
Location: Melbourne, Australia
Posts: 974
Blog Entries: 1
Default Re: Columns in an HTML paragraph
Tables - I don't know of any other way to do it. You can insert tables inside of tables.
Reply With Quote
    #4 (permalink)  
Old 04-11-2008
JacksonAO's Avatar
Contributing Member
 
Join Date: Mar 2008
Location: Jackson, MI
Posts: 235
Default Re: Columns in an HTML paragraph
you know how in ms word, you can just highlight a section of text and select the number of columns you want, that's what I mean.

but I think from what I've gathered so far the only way to do that is to set up tables.
if anyone wouldn't mind offering some advice on that, I would be forever greatful ))))
__________________
Sarah Bernstein
Jackson Administrative Outsourcing

www.jacksonao.com
Reply With Quote
    #5 (permalink)  
Old 04-11-2008
kathiemt's Avatar
Banned
Company name: A Clayton's Secretary
Virtual Assistant - THE Blog: How do I get clients as a Virtual Assistant?
 
Join Date: Nov 2007
Location: Melbourne, Australia
Posts: 974
Blog Entries: 1
Default Re: Columns in an HTML paragraph
Originally Posted by JacksonAO View Post
you know how in ms word, you can just highlight a section of text and select the number of columns you want, that's what I mean.

but I think from what I've gathered so far the only way to do that is to set up tables.
if anyone wouldn't mind offering some advice on that, I would be forever greatful ))))
html doesn't work the same as Word. I think you'll find if you try to do it in Word and save it has html it will become one long column. Tables are the only way I know of to create something that looks like it is in columns.
Reply With Quote
    #6 (permalink)  
Old 04-11-2008
virtual writing's Avatar
Resident Member
Company name: Virtual Writing and Communications
Latest blog post: Triberr lament
 
Join Date: Nov 2007
Location: Alamance County, NC
Posts: 1,410
Blog Entries: 1
Default Re: Columns in an HTML paragraph
Sarah - I'll bet Hamid will be getting to tables soon in the Saturday HTML classes here on the forums. It's easy, tho probably not something to be taught in a "Quick Reply."
__________________
Mary H. Ruth/Virtual Writing & Communications
http://www.writingVA.com
Reply With Quote
    #7 (permalink)  
Old 04-11-2008
Codehead's Avatar
Administrator
Company name: Codehead LLP
My latest blog post: Mac Performance Benchmark App
 
Join Date: Apr 2007
Location: WA
Posts: 175
Default Re: Columns in an HTML paragraph
Sarah,

You can use tables but tables are designed to display table like forms of data and they are not a tool for making layouts.
The other problem with tables is that they can lead to a messy code that will be hard to maintain later.
Yet one more problem with tables is that you will end up with more than necessary code, so your pages will be bigger in size.

One nice way to achieve multi column text is using lists:

HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>2 Column</title>
	
   <style type="text/css">
		ul.two-column {
			width:500px;
			list-style-type:none;
		}
		ul.two-column li {
			float:left;
			width:230px;
			padding:0 20px 0 0;
		}
	</style>
   
</head>

<body>

   <ul class="two-column">
      <li>
      	I'm the left column!
      </li>
      <li>
      	I'm the right column!
      </li>
   </ul>

</body>
</html>
I hope this helps
__________________
"Imagination is more important than knowledge."
Albert Einstein
Reply With Quote
    #8 (permalink)  
Old 04-11-2008
Codehead's Avatar
Administrator
Company name: Codehead LLP
My latest blog post: Mac Performance Benchmark App
 
Join Date: Apr 2007
Location: WA
Posts: 175
Default Re: Columns in an HTML paragraph
Quote:
I'll bet Hamid will be getting to tables soon in the Saturday HTML classes
We already talked about tables on session 3, check in the archives soon
__________________
"Imagination is more important than knowledge."
Albert Einstein
Reply With Quote
    #9 (permalink)  
Old 04-15-2008
JacksonAO's Avatar
Contributing Member
 
Join Date: Mar 2008
Location: Jackson, MI
Posts: 235
Default Re: Columns in an HTML paragraph
codehead.... you're great. that was just what I needed. I have more questions for another forum topic but I'm almost done with the new and improved site and I'll soon be able to share.
__________________
Sarah Bernstein
Jackson Administrative Outsourcing

www.jacksonao.com
Reply With Quote
    #10 (permalink)  
Old 04-15-2008
JacksonAO's Avatar
Contributing Member
 
Join Date: Mar 2008
Location: Jackson, MI
Posts: 235
Default Re: Columns in an HTML paragraph
http://www.jacksonao.com/services.html
here are the columns I created....
It is published but my links aren't functioning, I think because the frontpage extentions are still active on my server, i have to ask them to turn them off tomorrow since I'm not using front page now. My various sub-sites will come up only if I type in the URL with HTML at the end, and the links will only go to ie: www.jacksonao.com/services, instead of www.jacksonao.com/services.html
__________________
Sarah Bernstein
Jackson Administrative Outsourcing

www.jacksonao.com
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Easy HTML Tess Website Coding 15 08-05-2009 08:32 AM
Tables/Columns CSS Question JacksonAO Website Coding 8 04-15-2008 06:37 PM
Best HTML site resource! amybray Website Coding 3 04-06-2008 10:47 PM
HTML Tutorial vainparadise Website Coding 4 01-17-2008 09:58 AM


All times are GMT -4. The time now is 11:14 AM.

International Virtual Assistants Association
Project Management for Virtual Assistants
Work from Home | Become A Virtual Assistant
Virtual Assistant Directory
Affordable WordPress Themes
Create a Professional New Client Welcome Packet
Virtual Assistant Forums Advertising

© Virtual Assistant Forums 2012
All content and images are protected under copyright law and may not be reproduced in any way without express written consent.