Jump to content

lister

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by lister

  1. For the third error, add a table cell into the row. In other words:
    <tr bgcolor="#6997ff"><td></td></tr>

    The two other errors might get fixed if those rows happen to be empty as well.If that doesn't work, use CSS to specify the height. If you don't know how.... well... let's say you don't need validation if you're using tables anyway.

    thanks for reply, hopefully we'll start going into css morein the next lesson of our course..looking here alot more is done using css, aspecailly as there needs to be more precision in designig websites. At the moment to design this simple site i had to create nested tables and cells. I have to create empty cells so I could place a table andalign where I wanted the menus to be, there is probablya much easier way with css for positioning elements.thanks for your help really appreciated!!lister
  2. I have another assignment which I have done in golive, all it is is to create a simplewebsite with tables/nested table and links...http://www.twistedjunkie.eclipse.co.uk/html/home.htmlI have done the site, but with some difficulties. It seems to work and looks ok the only thing is I havedropped the file into http://validator.w3.org/ it it came back with some errors which I cant seem to figure why.please bear in min I have never used golive or any web application..please any tips would be handy...thanks for your timelister

  3. I have been asked by our teacher to create a basic table which has rows and columnssome rows and columns span accross using the colspan or rowspan.here is the example:http://www.twistedjunkie.eclipse.co.uk/example.pdfI have manged to apply the code and get the table to workusing the code below, could someone tell me if I have donethis right? It does work, but as I'm a newbie I did get stuckon the last row/rowspan.....<html><head><title>Table Assignment</title></head><table border="1" width="400"><tr><td>1</td><td>2</td></tr><tr><td colspan="2">3</td></tr><tr><td rowspan="2">4</td><td>5</td></tr><tr><td>6</td></tr><tr><td colspan="2">7</td></tr><tr><td>8</td><td>9</td></tr><td rowspan="2">10</td></tr><tr><td rowspan="2">12</td></tr><td>11</td></table></html>thanks for your helplister

×
×
  • Create New...