| View previous topic :: View next topic |
| Author |
Message |
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Wed Oct 05, 2005 2:32 pm |
|
|
|
Keep in mind that I gave you the entire page. Did you cut out the appropriate pieces to put it into the <head> and the <body>? |
|
PupilofHTML
Joined: 06 Oct 2005 Posts: 5
|
Posted: Thu Oct 06, 2005 11:47 am |
|
|
|
| Is this all basic html code you are all talking about? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Thu Oct 06, 2005 11:50 am |
|
|
|
| PupilofHTML wrote: |
| Is this all basic html code you are all talking about? |
Depends on which message you are referring to |
|
PupilofHTML
Joined: 06 Oct 2005 Posts: 5
|
Posted: Thu Oct 06, 2005 11:52 am |
|
|
|
| Well I see that some of it is, but I'm not sure of the other stuff, I only know a little bit, I'm trying to learn all of the basic stuff, I used to know how to make this link thingy, it was cool, but I forgot how. Some of it looks like different coding, I dunno. |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Thu Oct 06, 2005 11:53 am |
|
|
|
| The one that comes later in this thread is CSS and HTML |
|
PupilofHTML
Joined: 06 Oct 2005 Posts: 5
|
Posted: Thu Oct 06, 2005 11:54 am |
|
|
|
| Okay, I dunno any of CSS, I don't even know what it means, but this place is helping me alot on the basics, I'm just reading about the basic links, its kinda' neat. |
|
PupilofHTML
Joined: 06 Oct 2005 Posts: 5
|
Posted: Thu Oct 06, 2005 11:58 am |
|
|
|
| Can anyone help me get a color table for html please? I'm sorry, I should be posting this somewhere else shouldn't I? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Thu Oct 06, 2005 11:58 am |
|
|
|
| CSS is Cascading style sheets - it will help you layout your HTML |
|
PupilofHTML
Joined: 06 Oct 2005 Posts: 5
|
Posted: Thu Oct 06, 2005 11:59 am |
|
|
|
| Woah! Wow, thanx alot, thats really gonna' help alot. |
|
htmlstudent
Joined: 03 Oct 2005 Posts: 13
|
Posted: Fri Oct 07, 2005 12:43 pm |
|
|
|
| How can I make text flow around a table? Say I have a long table running vertically down the right side of the page, how do I make text go with it on the same horizontal levels, but seperate? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Fri Oct 07, 2005 12:53 pm |
|
|
|
| htmlstudent wrote: |
| How can I make text flow around a table? Say I have a long table running vertically down the right side of the page, how do I make text go with it on the same horizontal levels, but seperate? |
Side-by-side Tables
| Code: |
<table style="width: 50%; float: left; border-collapse: collapse;">
<tr>
<td> </td>
</tr>
</table>text here |
|
|
htmlstudent
Joined: 03 Oct 2005 Posts: 13
|
Posted: Fri Oct 07, 2005 1:29 pm |
|
|
|
I'm not sure where exactly to insert that code. Say this is the table:
<TABLE CELLPADDING=2 Width="75%"><font size=-1>
<TR BGCOLOR="#999999"><TD><b>Scoring Summary</td></tr>
<TR BGCOLOR="#CCCCCC">
<TD><b>Top 1st: New York Yankees</TD>
</TR>
<TR BGCOLOR="#FFFFFF"><TD> - G. Sheffield homered to deep left</b></td></tr><TR BGCOLOR="#CCCCCC"><td><b>Bottom 2nd: Chi White Sox</td></tr><TR BGCOLOR="#FFFFFF"><TD> - C. Everett doubled to deep right, J. Dye and T. Iguchi scored</b></td></tr><TR BGCOLOR="#999999"><td><br></td></tr>
</TABLE>
Where would I put in the code you gave me? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Fri Oct 07, 2005 1:34 pm |
|
|
|
In your opening table property
| Code: |
| <table style="width: 75%; float: left; border-collapse: collapse;" callpadding="2"> |
Use lowercase. When you start to use XHTML you ust use lowercase letters so this would be a good time to get into the practice |
|
htmlstudent
Joined: 03 Oct 2005 Posts: 13
|
Posted: Fri Oct 07, 2005 6:59 pm |
|
|
|
| If I have a row of different columns, is there a way I could do something like make all of them bold without having to type in the code for each one? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8259 Location: Castle Rock CO USA
|
Posted: Sat Oct 08, 2005 5:40 am |
|
|
|
| Not exactly sure what you mean, you would need to provide the source code or URL for the specific problem |
|
|