image desepears in print preview

liunx

Guest
Why does my ducky image disappear in print preview when i use

img.photo {
float:right;
margin-left:10px;
}

<!-- m --><a class="postlink" href="http://www.gert.easynet.be/cv/You're">http://www.gert.easynet.be/cv/You're</a><!-- m --> talking about the duck right? It shows up just fine for me in Print Preview for IE6 and Firefox 1.0PR.The reason you don't see the duck because your page size is too wide and it just doesn't fit into a standard 8.5"x11" size paper. Change the width of the page for the print out and you'll see it.And how do you do that :D

i guessing something like this ?

@page pg {size: portrait; size:...px;}And why does it not overwrite the margin-left setting ?
When i do this in print.css

img.photo {
float:right;
margin-left:10px;
}

It does 10px + 300px from all.css ?lol when i do this it works ???

margin-left:-300px;
 
Back
Top