I am trying to post meeting information on an html page by pulling XML data into the page. I've done that, but I'm having issues fomating that into a block.
Joe's
January 15, 2012 - 1:00pm
100 Main St
Mytown, MS 12345
I don't use css much so I'm not sure how, or if, this would work with the datafld="" property.
Also the output table is one long single column, is there a way to force the data into a certain table row length and then into more columns?
Here's my code:
All help is appreciated!
Joe's
January 15, 2012 - 1:00pm
100 Main St
Mytown, MS 12345
I don't use css much so I'm not sure how, or if, this would work with the datafld="" property.
Also the output table is one long single column, is there a way to force the data into a certain table row length and then into more columns?
Here's my code:
Code:
<table width="80%" datasrc="#myXML" border="1" align="center" bordercolor="#FFFFFF">
<caption>
<span><strong><font color="#990000" size="6">Meetings By City</font></strong></span>
</caption>
<tbody>
<tr>
<td><div align="left" valign="top"><font size="2"><strong><span datafld="name"> </span></strong></font></div><br>
<font size="2"><span datafld="edate"> </span></font> - <font size="2"><span datafld="etime"> </span></font></div><br>
<font size="2"><span datafld="address"> </span></font></div><br>
<font size="2"><span datafld="city"> </span></font>, <font size="2"><span datafld="state"> </span> <font size="2"><span datafld="zip"> </span></div><br>
</div></td>
</tr>
</tbody>
</table>
All help is appreciated!