Clear Floats

That table has nothing to do with the other question or code that was added so the table will be in the place it always was.

If you want the table align it with the left position of the .insert element then you need to do a bit of math. The insert element has a margin-left of 5% so you would need the table to start at 5% from the left but of course the table would also need to be 5% from the right or it won’t appear centred.

The easiest solution is to set the width of the table to 90% and use margin:auto to centre it.

e.g.

.location{width:90%;margin:auto;}

That’s great.

Its perfect. I’m sorry I’ve been a bit thick with this one, and I am appreciative of your patience.

No doubt I’ll be back!

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.