html help
Results 1 to 4 of 4

Thread: html help

  1. #1
    Join Date
    Nov 2000
    Location
    Fort Worth, Texas
    Posts
    260

    html help

    i cannot get a table around the stuff at the top of this page

    http://www.geocities.com/boxcarmember88/site2.html

    i have css for a table calss called banner and when i put this <table class="banner"> </table> around all that stuff, this happens

    http://www.geocities.com/boxcarmember88/site22.html

    y does it move that Cool Links lower (it is a javascript menu)
    please help
    Windows XP Professional Version SP1

    Pentium 4 2.4 GHz
    Intel Desktop Board D845GBV
    BIOS Version RG84510A.86A.0024.P13
    533 MHz System Bus Speed
    266 MHz System Memory Speed
    512 MB DDR 2700 SDRAM
    60 GB Maxtor 96147U8 Ultra-ATA/66 HDD @ 5400/RPM Primary IDE Master
    Nvidia Riva TNT2/TNT2 Pro
    Pioneer DVD-ROM DVD-115 Secondary IDE Master
    HP CD-R/RW 8x4x32 Secondary IDE Slave
    Delta DC-770 Monitor

  2. #2
    Join Date
    Jun 2000
    Posts
    177
    Make a visit to http://www.w3schools.com/ and read up on tables

  3. #3
    Join Date
    Sep 2001
    Location
    Ireland
    Posts
    990
    You need to use the <tr> (table row) and <td> (table data cell) to create the table rows etc, saying <table> content </table> only defines the table, adding <tr> creates the row, and <td> creates the data cell where the content will sit,

    at the part of your html where it says

    <table class="banner">

    add

    <tr><td>

    at the bottom where you close the table tag put

    </td></tr> before </table> in that order.

    eg

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

    Can I also suggest you comment out your clickmessage script, this hides the code from older and non javascript browsers and will save users using these getting errors.

    Put at start of script

    <!--Hide code

    end of script

    end hide-->

    ---------------------
    If you want to hand code pages an easy way to learn the correct html syntax is to use a wysiwyg html program such as dreamweaver, this way you can create the page visually, then look at the code to see how it was done...........

    Goodluck

    RB

  4. #4
    Join Date
    Jul 2002
    Location
    Lower left hand corner of the U.S. of A.
    Posts
    199
    Go here for help:

    HTML Forums

    Bill
    If your problem was solved don't leave us hanging - POST BACK!!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •