Re: Help with HTML please



In Code view just Cut the cell
<td>This content is second (I would like it to be third)</td>
and paste it right after the cell
<td>This content is third (I would like it to be second)</td>

So you have would have

<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#FFFFFF" id="table1">
<tr><td><br></td>
<td rowspan="2" valign="top"><br><br>This content is first.</td>
<td><br></td></tr>
<tr>
<td>This content is third (I would like it to be second)</td>
<td>This content is second (I would like it to be third)</td>
</tr></table>
</div>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Doug Stewart" <DougStewart@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:CC02EDA0-25B1-4CA4-A6D2-905E87936B64@xxxxxxxxxxxxxxxx
|I have some HTML code that doesn't do quite what I need. Can anyone help with
| the following?
|
| I've divided my home page into 3 columns. First column is pictures, second
| is text, 3rd is navigation buttons. For SEO purposes, I want the 2nd column
| to appear first in the HTML. I was kindly given some HTML code that creats a
| table that achieves this: 2nd column is first, followed by 1st column,
| followed by 3rd column.
|
| I would like to change the order slightly so that it is: 2nd column first,
| 3rd column 2nd, 1st column last. Can anyone tell me what I need to do to the
| following code to acheive this?
|
| <div align="center">
| <table border="0" cellpadding="0" cellspacing="0" width="100%"
| bgcolor="#FFFFFF" id="table1">
| <tr><td><br></td>
| <td rowspan="2" valign="top"><br><br>This content is first.</td>
| <td><br></td></tr>
| <tr><td>This content is second (I would like it to be third)</td>
| <td>This content is third (I would like it to be second)</td>
| </tr></table>
| </div>
|
| The code effectively creats a table with 2 cells in the first column, 1 on
| the second, 2 in the third. By using the bottom cell of the first and last
| column, the middle column appears first in the HTML. If you would like to see
| the result, I've created a test page:
| http://www.france-property-and-information.com/test_page.htm
|
| Very grateful for any suggestions.
| Doug Stewart
|
| P.S. I think it is about time I learned some basic HTML so that I can do
| this type of stuff myself. Can anyone recommend a book that is fairly basic
| (I'm not super technical)?
|


.