Computer problems,Computer help
*AX SOFT>>>Programming & Design

Fast html question?


http://www.ivoog.com/link

How do I move all the stuff under the 3 boxes up top? All that is inside a table. I need to move this stuff under the first top long box and to the left of the two smaller boxes. What do I edit and what code do I use? Thanks!

Hi there,

Okay you have an issue you need to fix first...

You have the top table which holds the 3 boxes across the top. Then you close that table. However, the very next bit of code is <td valign="top"> which is incorrect because there is no open table at that point. You can simply remove that line.

To add the content that is under the top box and the two side boxes where you want it, find this line...

<table width="232" border="0" cellspacing="0" cellpadding="0"><tr>

<td><div class="sidetbl"> </div></td>
</tr>

Which is the code for your first of the two smaller boxes on the left, you need to insert another column with a rowspan of 2

Add this:

<tr>
<td rowspan="2" valign="top">

This is where you put all that content you want to move.. tables and all.

</td>
</tr>

Then it is going to pick up with your code for the second (bottom) small box on the left and that's all you need to do, save the page and check it out.

Alternately...

Your other option would be to still remove the line of code I told you about above, but replace it with...

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<!-- Begin left column -->
<td width="232" valign="top">

(This where your existing table code is for the two smaller boxes in the left column. Leave it how it is.)

<table width="232" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div class="sidetbl"> </div>
</td>
</tr>
<tr>
<td>
<div class="sidetbl"> </div>
</td>
</tr>
</table>

Now you need to add this....

</td>
<!-- Begin right column -->
<td valign="top">

Add in all the code you are wanting to move from below here.

Then once you have that in this column, close the column and table for the middle portion of your page by adding....

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

Now you should be at the bottom of your page and having nothing left but the closing </body> and closing </html> tags.

If you have done it all correctly the bottom few lines of your page should look like this....

</span></ul></td>
</tr></table>

</td>
</tr>
</table>
</body>
</html>

Save it and you should be done.

Good luck with it! Yell if you need any additional help or encounter any problems.

Thank you ! An you are welcome as well. :)

Sorry if I confused you a bit. If you have any problems with it you can contact me at: wenchie(at)charter(dot)net Report It

From the looks of it, you're using an HTML program...dreamweaver I guess?

Basically, you need to put a table inside a table. You should create a new page, and copy and paste the code that makes up everything from the bottom into one of the boxes in the table. Then you can format the 3 boxes how you choose in different columns and rows...

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • How do I make banners?

    You can make the image in any image manipulation tool. I like photoshop, you can use illustrator, paint, gimp whatever. Then you post it on your site, below list the html code so that people can pa...

  • Any Database Specialist here?

    DB Analyst or what ever the title is will preside over *Database security--securing access to certain people or certain data *Database health--Making sure the server stays patched, and that ...

  • Step by step instructions for website?

    You find a host - a place to put your site. A site is usually more than one page. A page is a file. Download XAMPP and run the site on your own computer, until you have something you'd ...

  • How do i turn javascript on ?

    Find the "Internet Options" option in the menubar of your browser (it's probably located in the Tools menu). Click on the "Security" tab. Make sure the "Internet"...

  • How Can I Create A Glossary For Babylon Dictionary?

    Yes, it's free. Look at ...

  • Dreamweaver CSS layout help?

    This website helped me out a lot when I first started designing with css: ...

  • Hide comments and put friends in a scroll box?

    Hi there, I am assuming this is for MySpace... To hide comments you need to add this to your About Me section of your profile... <style type="text/css"> .friendsComments{d...

  • How do i get the embed code of a wmv file?

    The "embed code" is in the webpage that displays the file. If you view that webpage in a browser, click on "view->source" or right click to find "view source". Fo...

  •  

    Categories--Copyright/IP Policy--Contact Webmaster