I'm having problems in positioning an image and a table when im exporting an it ta a word document. .pos { top:120pt; left:300pt; position:absolute; } this is the css code that i use... but it does not work... can anyone help... pealse...
I see two major problems with the small snippet of CSS code you provided. 1.) pt is a unit of measurement best saved for text on the printed page, so you shouldn't be using it for general positioning. 2.) Speaking of positioning, you shouldn't be using absolute positioning for your layout anyway. Unfortunately I can't say much more without seeing the complete code (bear in mind I'm going to be busy with code-rewrites for the next couple days, so I may not be able to get back to you right away).