Hi, im using dreamweaver and i have a table in which i have an image. When i add another table under the table existing it comes right at the bottom. What should i do to that table so i can move it and place it anywhere around the page. Is there any solution to this, please help or provide me with another idea of displaying my data wherever i want.
And another problem is that, when i place something on the top it doesnt show up there it comes slighty away from where i had placed.

Need help, thank you so much

Dani AI

Generated

For : tables are designed for tabular data and will naturally stack one after the other in the normal flow. As hinted, using block containers (divs) plus CSS gives you full control. Below are practical patterns you can apply right away and a few Dreamweaver-specific checks.

A modern, flexible approach is Flexbox. It keeps elements in flow but lets you arrange, wrap, and reorder without absolute positioning:

<div class="wrap">
  <div class="box">Box A</div>
  <div class="box">Box B</div>
  <div class="box">Box C</div>
</div>
.wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.box  { flex: 0 1 300px; } /* width control, responsive */
.box.top { order: -1; }   /* move this box to the front */

If you need to place something at an exact spot on the page, use absolute positioning inside a positioned container. Note: this removes the element from normal flow and can overlap other content.

.stage { position: relative; height: 600px; }
.movable { position: absolute; top: 20px; left: 30px; }

Quick troubleshooting tips:

  • Remove default page gaps with body { margin: 0; padding: 0; } if things sit slightly away from the top.
  • If using floats, contain them with a clearfix:
.clearfix::after { content: ""; display: block; clear: both; }
  • Preview in Live View or a real browser (Design view can be misleading in Dreamweaver). Use the browser DevTools (F12) to inspect computed margins, padding, and positioning.
  • Prefer CSS Grid/Flexbox for layout and keep tables for tabular data only.

you mst code Div for this case this will easily setup all ur desings

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.