Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6337441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:15:10+00:00 2026-05-24T19:15:10+00:00

I have a webpage I was trying to develop, but I can’t figure out

  • 0

I have a webpage I was trying to develop, but I can’t figure out what the problem is with the layout. The page goes all out of shape and out of width when I include the code below.

This particular code comes out well when viewed on a browser, but when I want to add another row BETWEEN the people picture and the RED Footer, everything breaks

<!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=utf-8" />
        <title>Family Hotel</title>
    </head>
 <body>
<table style="border: 1px solid #223e86; width: 600px;" align="center"> 

<tr>
<td bgcolor ="#e4322d" valign="top" width="437" style="padding-left: 15px">
<h3><span style="font-family: Verdana,Geneva,sans-serif; color: #FFFFFF;">Why choose Family Hotel in Palmgrove  as your holiday home for 2012? </span></h3> 
</td>

<td align="left" valign="top" width="14">&nbsp;</td>
<td valign="top" width="151"><a href="http://www.mywebsite.com"><img src="premises.png" alt="" border="0" height="107" width="150" /></a></td>

</tr>

<tr>
<td align="center" colspan="3" valign="top" style="font-family: Verdana,Geneva,sans-serif; color: #000000; padding-top: 8px; padding-left: 15px; padding-right: 15px;">
 <img src="../Robot/Memberslogo-web-images/whitearrow_opt.jpeg">
 <p />
</td>
</tr>


<!--I WANT THE COLUMN HERE-->



<tr>
<td bgcolor ="#e4322d" colspan="7" style="padding-left: 15px; padding-right: 15px;" align="center">
<p><span style="font-family: Verdana,Geneva,sans-serif; color:#FFFFFF;">
Family Hotel Ltd - River Lane House - Shore Street - PalmGrove - 76349L
+1 (0) 434 769 789 - <a href="http://www.mywebsite.com">www.mywebsite.com</a><br />

<a href="mailto:info@mywebsite.com">info@mywebsite.com</a>
</span></p>
</td>
</tr>
</table>
  </body>
</html>

Here’s the code I want to insert in between the People image and the red footer.

<tr>
<td>
<table>
<tr> 
  <td>
        <img src="premises.png" align="center" width="120px" height="128px"/>
  </td>
</tr>
</table>
</td>
<td>
<table cellpadding="0" cellspacing="0" style="width:460px; padding:35px 0; background: #E4322D; border-radius:14px; text-align:center; font-size:16px; font-family: Verdana,Geneva,sans-serif; color:#FFF;">
 <tr>
        <td>  We are a small family-run hotel, as such you are sure to have a full personal experience. For the last 12 years we have consistently been ranked as one of the best family-run hotels in Palmgrove.   

   </td>
 </tr>
</table>
</td>
</tr>

Here’s the images of what they look like:
enter image description here

The last piece of code produces this image – which is what I want to insert in the page between the people picture and the red footer.
enter image description here


Update: Here’s what the page looks like – the top column pushes to the left. It should stretch across and not push to one side: (

enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T19:15:11+00:00Added an answer on May 24, 2026 at 7:15 pm

    Try this site. It will tell you what’s wrong with your code:

    HTML Validator

    One problem caught by the validator is that align cannot be “center”

    Also, if that didn’t work, do you realize that the code will try to stuff the 2 tables into the first 2 columns of your “master table”?

    For example, here is what you basically have:

    <tr>
        <td>
        <td>
        <td>
    <tr>
        <td> //3 columns wide
    <tr>
        <td>
        <td>
    <tr>
        <td> //7 columns wide
    

    So, you are kind of saying, 3 columns then 3 columns then 2 columns then 7 columns.

    I tried to do a quick edit. Maybe the following works?

    <!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=utf-8" />
            <title>Family Hotel</title>
        </head>
     <body>
    <table style="border: 1px solid #223e86; border-bottom:none; width: 600px;" align="center">
    <tbody>
    <tr>
    <td bgcolor="#e4322d" valign="top" width="937" style="padding-left: 15px">
    <h3><span style="font-family: Verdana,Geneva,sans-serif; color: #FFFFFF;">Why choose Family Hotel in Palmgrove  as your holiday home for 2012? </span></h3>
    </td>
    <td valign="top" width="151"><a href="http://www.mywebsite.com"><img src="premises.png" border="0" height="107" width="150" /></a></td>
    </tr>
    </tbody>
    </table>
    <table style="border: 1px solid #223e86;border-top:none; width: 600px;" align="center">
    <tbody>
    <tr>
    <td colspan="6" align="center" valign="top" style="font-family: Verdana,Geneva,sans-serif; color: #000000; padding-top: 8px; padding-left: 15px; padding-right: 15px;"><img src="../Robot/Memberslogo-web-images/whitearrow_opt.jpeg" />
    <p>&nbsp;</p>
    </td>
    </tr>
    <tr>
    <td colspan="3">
    <table>
    <tbody>
    <tr>
    <td><img src="premises.png" align="center" width="120px" height="128px" /></td>
    </tr>
    </tbody>
    </table>
    </td>
    <td colspan="3">
    <table cellpadding="0" cellspacing="0" style="width:460px; padding:35px 0; background: #E4322D; border-radius:14px; text-align:center; font-size:16px; font-family: Verdana,Geneva,sans-serif; color:#FFF;">
    <tbody>
    <tr>
    <td>We are a small family-run hotel, as such you are sure to have a full personal experience. For the last 12 years we have consistently been ranked as one of the best family-run hotels in Palmgrove.</td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="6" bgcolor="#e4322d" style="padding-left: 15px; padding-right: 15px;" align="center">
    <p><span style="font-family: Verdana,Geneva,sans-serif; color:#FFFFFF;"> Family Hotel Ltd - River Lane House - Shore Street - PalmGrove - 76349L
    +1 (0) 434 769 789 - <a href="http://www.mywebsite.com">www.mywebsite.com</a><br /> <a href="mailto:info@mywebsite.com">info@mywebsite.com</a> </span></p>
    </td>
    </tr>
    </tbody>
    </table>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to figure out how to do the following. I have webpage
I have been pulling my hair trying to figure this out but nothing is
I have a webpage in asp.net that I am trying to lay out and
I have been trying to figure out a way to refresh internest explorer through
I am trying to figure out if in C# if I have converted a
I have a problem when trying to parse a webpage using jSoup. If I
I'm trying to select an element from my webpage... I have inserted a control
I have a flash video player in a div inside a webpage, I'm trying
What I'm trying to achieve is a scrollable tab-bar. I have a web page
I have a webpage which lags while loading, because an embedded object is trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.