Closed Thread
Results 1 to 7 of 7

Thread: Tables

  1. #1
    Dork The Red Guy is an unknown quantity at this point The Red Guy's Avatar
    Join Date
    Aug 2001
    Location
    Singapore
    Posts
    3,956

    Tables

    I need help on filling cells of a navigation menu. Attached is an image of the menu. Thanks. Using frontpage 2000 for a demostration.
    Attached Images Attached Images

  2. #2
    FWS Addict biggulp is an unknown quantity at this point biggulp's Avatar
    Join Date
    Jan 2002
    Posts
    831
    what is filling cells? adding stuff or adding bg color?

  3. #3
    Dork The Red Guy is an unknown quantity at this point The Red Guy's Avatar
    Join Date
    Aug 2001
    Location
    Singapore
    Posts
    3,956
    Adding colours. I tried to make the cell the colour I wanted but the table became distorted!

  4. #4
    NLC Dusty is an unknown quantity at this point Dusty's Avatar
    Join Date
    Oct 2000
    Posts
    2,953
    Posting the HTML would be more helpful than a screenshot of the table. To give those two cells a background color you just need to add "bgcolor='#......'" to the <td> tag (and put some kind of content in the cell itself, a &amp;nbsp; will do), or are you asking to do something more than that?
    I think I may have been here before... a long, long time ago... 599699 Unread Posts, you say?

    Ah, I found my old avatar. The hypnotic evil duck.
    It was 2002. Duck avatars were the style at the time.
    Long and fascinating story there. I'd tell you if I remembered it.

  5. #5
    Dork The Red Guy is an unknown quantity at this point The Red Guy's Avatar
    Join Date
    Aug 2001
    Location
    Singapore
    Posts
    3,956
    Code:
        <td width="24%">
          <table border="0" width="174" cellspacing="0" cellpadding="0" height="326">
            <tr>
              <td align="left" height="26" width="31" valign="top">
                <p align="right"><img border="0" src="images/top_left_corner.gif" height="31"></td>
              <td width="134" valign="top" height="26" align="left">
                <p align="center"><img border="0" src="images/nav.gif" width="134" height="31"></td>
              <td valign="top" align="left" height="26" width="31"><img border="0" src="images/top_right_corner.gif" width="31" height="31"></td>
            </tr>
            <tr>
              <td width="31" height="276" align="left"></td>
              <td width="134" height="276">
                <table border="0" width="100%">
                  <tr>
                    <td width="100%" valign="top"><a href="index.shtml">Index</a>
                      <p><a href="comic_guide/index.shtml">Slam Dunk Anime</a></p>
                      <p>Images</p>
                      <p>Forums</p>
                      <p>Contact Us</td>
                  </tr>
                </table>
              </td>
              <td width="31" height="276"></td>
            </tr>
            <tr>
              <td width="31" align="left" height="24" valign="top"><img border="0" src="images/bot_left_corner.gif" width="31" height="31"></td>
              <td width="134" background="images/space.gif" height="24" valign="top" align="left"></td>
              <td width="31" align="left" height="24" valign="top"><img border="0" src="images/bot_right_corner.gif" width="31" height="31"></td>
            </tr>
          </table>
        </td>

  6. #6
    NLC Dusty is an unknown quantity at this point Dusty's Avatar
    Join Date
    Oct 2000
    Posts
    2,953
    <td width="31" height="276" align="left"></td>

    becomes

    <td width="31" height="276" bgcolor="#123456">&amp;nbsp;</td>

    and

    <td width="31" height="276"></td>

    becomes

    <td width="31" height="276" bgcolor="#123456">&amp;nbsp;</td>
    I think I may have been here before... a long, long time ago... 599699 Unread Posts, you say?

    Ah, I found my old avatar. The hypnotic evil duck.
    It was 2002. Duck avatars were the style at the time.
    Long and fascinating story there. I'd tell you if I remembered it.

  7. #7
    Dork The Red Guy is an unknown quantity at this point The Red Guy's Avatar
    Join Date
    Aug 2001
    Location
    Singapore
    Posts
    3,956
    Thanks, solved it.

Closed Thread

Bookmarks

Posting Permissions

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