Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 07-27-2007, 11:35 PM Problem with tables.
Skilled Talker

Posts: 85
Trades: 0
Hello,

Please take a look at the following picture.

http://img53.imageshack.us/my.php?image=pictureko6.jpg

I need to add that row that is showing up with the black lines since I am will be having some text there.
I have tried several times but it is not letting me do it.

I would appreciate some help on this.

Thanks!
allan16 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-28-2007, 03:08 AM Re: Problem with tables.
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
Hi Allan. I'll be gald to help, but could I ask you to post the code you have so far. I'm assuming the page isn't online anywhere, but if it is a link to the page would be fine.

If I could see the table structure you currently have it will help to let you know the easiest way to add the row you want.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 07-28-2007, 12:54 PM Re: Problem with tables.
Skilled Talker

Posts: 85
Trades: 0
hey vangogh,

thanks for the help.
Here is the code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
</head>

<body>

<table width="876" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutDefaultTable-->
<tr>
<td width="236" height="103" valign="top"><img src="images/logo.jpg" width="236" height="103" /> </td>
<td width="640" height="103" valign="top"><img src="images/banner.jpg" width="640" height="103" /></td>
</tr>
</table>

<table width="90%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="17%" bgcolor="#FFFFFF">&nbsp;</td>
<td width="83%" bgcolor="#FFFFFF">&nbsp;</td>
</tr>
<tr>
<td height="353" bgcolor="#FFFFFF"><img src="images/menu.jpg" width="145" height="339" border="0" align="top" usemap="#Map" /><br> <br></td>
<td bgcolor="#FFFFFF">
</tr>
<tr>
<td height="19" bgcolor="#CCCCCC">&nbsp;</td>
<td bgcolor="#CCCCCC"><div align="center" class="style1">
<div align="center"><a href="Home.html">Home</a> - <a href="Land.html">Land</a> - <a href="Apartments.html">Apartments</a> - <a href="Houses.html">Houses</a> - <a href="Contact us.html">Contact us</a> </div>
</table>



<map name="Map" id="Map"><area shape="rect" coords="12,26,121,45" href="Home.html" />
<area shape="rect" coords="13,59,122,77" href="Land.html" />
<area shape="rect" coords="12,95,137,113" href="Apartments.html" />
<area shape="rect" coords="11,130,126,147" href="Houses.html" />
<area shape="rect" coords="13,165,133,182" href="Contact us.html" />
</map></body>
</html>

Thanks!
allan16 is offline
Reply With Quote
View Public Profile
 
Old 07-29-2007, 01:42 PM Re: Problem with tables.
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
I think the best thing is to redo the the overall structure of the tables for the code. Here's what I came up with.

HTML Code:
<table>
 <tr>
  <td colspan="2">header</td>
 </tr>
 <tr>
  <td>
   <table>
    <tr>
     <td>menu</td>
    </tr>
   </table>
  </td>
  <td>
   <table>
    <tr>
     <td>left column bottom</td>
     <td>right column bottom</td>
    </tr>
    <tr>
     <td>left column bottom</td>
     <td>right column bottom</td>
    </tr>
    <tr>
     <td>left column bottom</td>
     <td>right column bottom</td>
    </tr>
   </table>
  </td>
 </tr>
 <tr>
  <td colspan="2">footer</td>
 </tr>
</table>
I didn't include everything inside the tables, but I did add text for you to see where everything should fo in your layout.

What I did was create one container table. The first row in the table is the header and the third row is the footer. Each of these rows has one cell that spans two columns.

In the 2nd row of the overall table I have two cells and each cell contains a table. The left cell is a table that will hold your menu and the right table is now one with 3 rows of two cells each.

I hope this makes sense. Let me know if this works. If not I'll be happy to try to help more.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 07-29-2007, 08:08 PM Re: Problem with tables.
Skilled Talker

Posts: 85
Trades: 0
Thanks a lot!
I will give it a try 2night and let you know how this goes!

Thanks again
allan16 is offline
Reply With Quote
View Public Profile
 
Old 07-29-2007, 08:59 PM Re: Problem with tables.
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
Glad to help. I hope it works for you, but do feel free to ask again if you need more help.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Reply     « Reply to Problem with tables.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.70430 seconds with 12 queries