• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Making Colums on a website.....

MainFramed

Diamond Member
I dont know which forum this should be put in, so i am asking here (of course )
-How do you colums on website? i tried to make a jpg colum in dreamweaver but that obisouly dont work....by colum i mean....this website
...see how can i make lines/colums so that i can type on each side?

sorry if this is confusing, would appciate any help 🙂
 
Haha, thanks for the shameless mikeroth.org plug, MainFramed! Anyway, the way I did it was by using cascading style sheets. You can find a lot of info at www.w3.org, but they basically let you set different parameters (font colors, positions, etc.) for different sections of your website.

Good luck - web design is a frustrating but rewarding process.
 
<Table width=100%>
<TR>
<TD width=50%>
Keep typing all the crap you want in this column. There ya go. That's a good boy.
</TD>
<TD width=50%>
This text is for the column on the right. Man, too bad I don't have any real content to put here. No content makes Jack a dull web developer.
</TD>
</TR>
</Table>
 
Originally posted by: Tyler
<table><tr><td>Column 1</td><td>Column 2</td></tr></table>

<----Learning HTML

Thanks....is there a way to *customize* it? like red or thickness.....


OR

could i make a webpage with graphics/my text and everything and use image ready to cut it up, make it website material...or is this not possible?


And one more question, while im at...anyone know how to do it in Dreamweaver? (other the text, jw)
 
Originally posted by: jumpr
Haha, thanks for the shameless mikeroth.org plug, MainFramed! Anyway, the way I did it was by using cascading style sheets. You can find a lot of info at www.w3.org, but they basically let you set different parameters (font colors, positions, etc.) for different sections of your website.

Good luck - web design is a frustrating but rewarding process.

lol sorry mike, hope i didint piss you off. your site is aweome 😀
 
Originally posted by: MainFramed
Originally posted by: jumpr
Haha, thanks for the shameless mikeroth.org plug, MainFramed! Anyway, the way I did it was by using cascading style sheets. You can find a lot of info at www.w3.org, but they basically let you set different parameters (font colors, positions, etc.) for different sections of your website.

Good luck - web design is a frustrating but rewarding process.

lol sorry mike, hope i didint piss you off. your site is aweome 😀

Not at all - good luck with the site. And since you said you're learning HTML, listen to the other people, not to me. But when you've mastered HTML, learn CSS - it makes things somewhat easier.
 
Originally posted by: MainFramed
Originally posted by: Tyler
<table><tr><td>Column 1</td><td>Column 2</td></tr></table>

<----Learning HTML

Thanks....is there a way to *customize* it? like red or thickness.....

There's lots of ways to improve it, That's just the most basic way to make it work.

If you want it red, do this:
<table bgcolor="red"><tr><td>Column 1</td><td>Column 2</td></tr></table>

If you want to adjust the widths of the columns, do something like this:
<table width="500px"><tr><td width="200px">Column 1</td><td width="300px">Column 2</td></tr></table>

There's a lot of different parameters, and then there's CSS that gives you a million more.

Edit: and go "insert > table" in dreamweaver.
 
Originally posted by: MainFramed
Originally posted by: Tyler
<table><tr><td>Column 1</td><td>Column 2</td></tr></table>

<----Learning HTML

Thanks....is there a way to *customize* it? like red or thickness.....


OR

could i make a webpage with graphics/my text and everything and use image ready to cut it up, make it website material...or is this not possible?


And one more question, while im at...anyone know how to do it in Dreamweaver? (other the text, jw)

<table borders=1 (or 2, or 3, or 4, or 5, for thickness)>
<tr>
<td bgcolor=red>
background color for this data cell is red, but I still don't have any content.
</td>
<td bgcolor=blue>
HALP! I still don't have any content!
</td>
</tr>
</table>

And then when you want to insert an image, use <img src="graphicfile.jpg"> or whatever.

And if I did it in dreamweaver, I'd still type all the text, so that's probably not what you're looking for.
 
Originally posted by: Tyler
Originally posted by: MainFramed
Originally posted by: Tyler
<table><tr><td>Column 1</td><td>Column 2</td></tr></table>

<----Learning HTML

Thanks....is there a way to *customize* it? like red or thickness.....

There's lots of ways to improve it, That's just the most basic way to make it work.

If you want it red, do this:
<table bgcolor="red"><tr><td>Column 1</td><td>Column 2</td></tr></table>

If you want to adjust the widths of the columns, do something like this:
<table width="500px"><tr><td width="200px">Column 1</td><td width="300px">Column 2</td></tr></table>

There's a lot of different parameters, and then there's CSS that gives you a million more.

thanks tyler, and jw....where are you getting your code from? (assuming you dont know it by hand? no offense just wondering there is an online refrence other than webmonkey with advanced html tages and what not)
 
Originally posted by: MainFramed

thanks tyler, and jw....where are you getting your code from? (assuming you dont know it by hand? no offense just wondering there is an online refrence other than webmonkey with advanced html tages and what not)

I'm just coming up with this off the top of my head, it's all pretty basic HTML.
 
Originally posted by: Tyler
Originally posted by: MainFramed

thanks tyler, and jw....where are you getting your code from? (assuming you dont know it by hand? no offense just wondering there is an online refrence other than webmonkey with advanced html tages and what not)

I'm just coming up with this off the top of my head, it's all pretty basic HTML.

I still refuse to call you Tyler.
 
Back
Top