images and tables

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • coltrane

    images and tables

    I created a rounded rectange using a graphic package. The fill color is
    set to transparent. when I try to use it as a border for a table the
    images is displayed and the table is placed below the image.
    First can this be done? is so how?

    My latest attempt is something like this

    <table cellspacing=1 cellpadding=1 width=200 border=1 ID="Table1">
    <img src="images/image4.jpg">
    <tr>
    <td><a href="main1.htm l" target="main">o ne</a></td>
    </tr>
    <tr>
    <td bgcolor="#9dacb d"><a href="main2.htm l" target="main">t wo</td>
    </tr>
    <tr>
    <td bgcolor="#9dacb d"><a href="main3.htm l" target="main">t hree</td>
    </tr>
    <tr>
    <td bgcolor="#9dacb d"><a href="main4.htm l" target="main">f our</td>
    </tr></table>

    I also tried to to create a table style with the image but that doesn't
    work either.

    Thanks for your help

    john

  • Steve Pugh

    #2
    Re: images and tables

    coltrane wrote:
    I created a rounded rectange using a graphic package. The fill color is
    set to transparent. when I try to use it as a border for a table the
    images is displayed and the table is placed below the image.
    First can this be done? is so how?
    >
    My latest attempt is something like this
    >
    <table cellspacing=1 cellpadding=1 width=200 border=1 ID="Table1">
    <img src="images/image4.jpg">
    <imgis not a permitted child of <table>. Put it inside one of the
    table cells or set it as background image for the whole table depending
    on what exactly you're trying to do..

    And you're not using tables for layout are you? This is a genuine data
    table, isn't it?

    Steve

    Comment

    • coltrane

      #3
      Re: images and tables

      Yes, this is a real table. I want to have the table with a border with
      rounded corners.
      I couldn't find a good way of doing this.

      thanks


      On Nov 3, 11:04 am, "Steve Pugh" <steve.gru...@g mail.comwrote:
      coltrane wrote:
      I created a rounded rectange using a graphic package. The fill color is
      set to transparent. when I try to use it as a border for a table the
      images is displayed and the table is placed below the image.
      First can this be done? is so how?
      >
      My latest attempt is something like this
      >
      <table cellspacing=1 cellpadding=1 width=200 border=1 ID="Table1">
      <img src="images/image4.jpg"><im gis not a permitted child of <table>. Put it inside one of the
      table cells or set it as background image for the whole table depending
      on what exactly you're trying to do..
      >
      And you're not using tables for layout are you? This is a genuine data
      table, isn't it?
      >
      Steve

      Comment

      • coltrane

        #4
        Re: images and tables


        Okay, now that I think about it is not a table. I want a list of link
        located with in a horizontal frame. I would like the list of links
        located within a rounded rectangle.


        On Nov 3, 11:04 am, "Steve Pugh" <steve.gru...@g mail.comwrote:
        coltrane wrote:
        I created a rounded rectange using a graphic package. The fill color is
        set to transparent. when I try to use it as a border for a table the
        images is displayed and the table is placed below the image.
        First can this be done? is so how?
        >
        My latest attempt is something like this
        >
        <table cellspacing=1 cellpadding=1 width=200 border=1 ID="Table1">
        <img src="images/image4.jpg"><im gis not a permitted child of <table>. Put it inside one of the
        table cells or set it as background image for the whole table depending
        on what exactly you're trying to do..
        >
        And you're not using tables for layout are you? This is a genuine data
        table, isn't it?
        >
        Steve

        Comment

        Working...