Positioning boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In working on a website in FP2002, I am somehow accidently created a
"positioning box" around some of my text/tables, etc. I haven't figured out
how to "undo" this formatting. My solution has been to reenter the data, but
that's very time consuming (not to mention frustrating).

How can I delete the positioning box without losing all of the stuff that's
in it?

Thanks!
 
Hi,
I think your easiest way would be to flip over to code view, you'll find a
div tag wrapped around your table like this
<div style="......>
<table....
.....your table stuff
</table>
</div>

Just delete the opening and closing div tags, your table will be intact just
without it's positioning box.

Jon
 
That worked. Thank you so much.
Sherry

Jon Spivey said:
Hi,
I think your easiest way would be to flip over to code view, you'll find a
div tag wrapped around your table like this
<div style="......>
<table....
.....your table stuff
</table>
</div>

Just delete the opening and closing div tags, your table will be intact just
without it's positioning box.

Jon
 
Back
Top