Help with tables and more

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

How do I position a table "anywhere" on my page? I seem to only be able to
put it, left, middle, right.
Also is there a way to "not" underline hyperlinks?
Thanks,
Don..........
 
Tables are tricky because it's hard to get them exactly where you want them.
What you could do is use nested tables (tables and cells inside of other
tables and cells) to help better position them. You could also use CSS to
try and position the tables on your page.

As for the hyperlinks, switch to Code View and in the <head> section of your
code, put:

<style>
a{text-decoration:none}
</style>

You'll need to do this on every page or create a header page that has this
code and use it as an include on every page.
 
How do I position a table "anywhere" on my page? I seem to only be able
to
put it, left, middle, right.

If you create a page sized table and break it into cells where you want the
text/graphics to line up you can sometimes get by without nesting one table
inside another. Nesting tables more than 3 deep (I think it is) slows your
page load significantly. Sometime you can tinker with the distance the
text/graphics will stay away from the border of each cell enough to avoid
having to put in a nested table. The usual ideas apply. The less
code/complexity you can use to solve a problem the faster the page will
load.

Hope this helps.
 
Back
Top