Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Community Discussions (All other subjects)
 Help with a table(s)
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

MaGraham
Senior Member

USA
1297 Posts

Posted - 08 January 2013 :  23:34:24  Show Profile  Reply with Quote

I think this fits under "All other subjects." (lol)

I need to place two tables side by side with a little space in-between them.

The first table has a graphic that's 172px x 173px.
Just below the graphic is one sentence.

The second table has a graphic that's 335px x 45px.
I want a little cellspacing in this table, and some cellpadding as well.
The next row has a sentence.
The last row has a sentence, too.

I'm sure you guys are laughing at this but I just can't seem to make it work!

I prefer HTML rather than ASP; please. But I'm desperate so I'll take either!


Oh, I need border colapse in both tables.


"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley

Edited by - MaGraham on 08 January 2013 23:39:45

Webbo
Average Member

United Kingdom
982 Posts

Posted - 08 January 2013 :  23:54:08  Show Profile  Visit Webbo's Homepage  Reply with Quote
Try this:


<table border="0" cellspacing="1" width="603" height="475">
	<tr>
		<td valign="top" width="228">
		 <p style="text-align: center">
		<img border="0" src="your image path" width="172" height="173"><br>
		<br>
		1st pic text</td>
		<td valign="top" width="9">
		 </td>
		<td valign="top" height="367" width="356">
		 <p style="text-align: center">
		<img border="0" src="your image path" width="335" height="45"></p>
		<p style="text-align: center">2nd pic text</td>
	</tr>
	<tr>
		<td valign="top" colspan="3" height="22">
		Your first sentence here</td>
	</tr>
	<tr>
		<td valign="top" colspan="3" height="21">
		Your second sentence here</td>
	</tr>
</table>
Go to Top of Page

MaGraham
Senior Member

USA
1297 Posts

Posted - 09 January 2013 :  00:47:47  Show Profile  Reply with Quote
I am sorry I didn't explain this very well.

Here's a screen shot of what it looks like:





Here's a graphic I created of what I would like for it to look.






Here's what I have. I know I didn't mention the bgcolor and the text being white but obviously that's no problem. I can get that to work! (lol)



<table border="0" cellspacing="1" width="603" height="475">
<tr>
<td valign="top" width="228">
<p style="text-align: center">
<a href="#" onclick="window.open('ListenLive/Player/WBOZFM', 'newwindow', 'width=800, height=600'); return false;"> <img src="solid_gospel.gif" border="0" alt="Solid Gospel Radio" alt="Solid Gospel"></a><br>
<br>
<font face="arial" size="2">(Radio opens in a small window and music starts after brief commercial)</font></td>
<td valign="top" width="9">
</td>
<td valign="top" height="367" width="356">
<p style="text-align: center">
<img border="0" src="scripture_thoughts.png" alt="Daily Scripture and/or Thought" width="335" height="45"></p>
</tr>
<tr>
<td align="right" valign="top" colspan="3" height="22">
<font face="arial" size="2" color="#000000"><b>. . .choose you this day whom ye shall serve.</b></font></td>
</tr>
<tr>
<td align="right" valign="top" colspan="3" height="21">
<font face="arial" size="1" color="#000000"><b><i>Joshua 24:15a</i></b></font></td>
</tr>
</table>


"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley

Edited by - MaGraham on 09 January 2013 04:13:23
Go to Top of Page

Webbo
Average Member

United Kingdom
982 Posts

Posted - 09 January 2013 :  03:06:20  Show Profile  Visit Webbo's Homepage  Reply with Quote
Try this one:

<table border="0" cellspacing="1" width="603" height="475">
<tr>
<td valign="top" width="228" rowspan="4">
<p style="text-align: center">
<a href="#" onclick="window.open('http://Link Removed, 'newwindow', 'width=800, height=600'); return false;"> <img src="http://Link Removed" border="0" alt="Solid Gospel Radio" alt="Solid Gospel Radio"></a><br>
<br>
<font face="arial" size="2">(Radio opens in a small window and music starts after brief commercial)</font></td>
<td valign="top" width="20" rowspan="4">
</td>
<td valign="top" height="24" width="345">
<p style="text-align: center">
 </p>
</tr>
<tr>
<td valign="top" height="110" width="345" bgcolor="#60050A">
<p style="text-align: right">
<img border="0" src="http://Link Removed" alt="Daily Scripture and/or Thought" width="335" height="45"><b><font face="arial" size="2" color="#000000">. </font>
<font face="arial" size="2" color="#FFFFFF">. .choose you this day whom ye shall serve.      </font></b></p>
<p style="text-align: right">
<font face="arial" size="1" color="#FFFFFF"><b><i>Joshua 24:15a       </i></b></font>
</tr>
<tr>
<td valign="top" height="229" width="345">
 </tr>
<tr>
<td valign="top" height="91" width="345">
 </tr>
</table>
</body>

</html>




Edit: Links Removed

Edited by - Webbo on 09 January 2013 16:59:58
Go to Top of Page

MaGraham
Senior Member

USA
1297 Posts

Posted - 09 January 2013 :  03:32:01  Show Profile  Reply with Quote

YEA! It works PERFECT! :)

Thank you so much for taking time to help me with this, Webbo!

I wish I had asked sooner!

Thank you again!


"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley
Go to Top of Page

Webbo
Average Member

United Kingdom
982 Posts

Posted - 09 January 2013 :  03:51:42  Show Profile  Visit Webbo's Homepage  Reply with Quote
You're welcome, my good deed for the day
Go to Top of Page

MaGraham
Senior Member

USA
1297 Posts

Posted - 09 January 2013 :  04:06:36  Show Profile  Reply with Quote

quote:
Originally posted by Webbo

. . .my good deed for the day






"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.1 seconds. Powered By: Snitz Forums 2000 Version 3.4.07