Graphic Code

liunx

Guest
I have a picture that I'm trying to use as my background. I've set the code up to where I can click on different parts of it to link to other pages. However, I cannot figure out how to make it full size within different computer screen resolutions. What is the code I use to make my picture full paged no matter what the resolution of the "client"? Also, how do I stop the small pop-up on the graphic that enables the "client" to save, print, email, or open their my pictures to save the image?<br />
<br />
Please help...all would be greatly appreciated!<!--content--><meta http-equiv="imagetoolbar" content="no" /><br />
in the header kills that option thing<br />
<br />
as for the stretching you might try:<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"pic.gif" style="z-index:-1; width:100%; height:100%;" alt="pic"><!--content-->That works great, but it smears the text on the picture. Any suggestions?<!--content-->Well if your picture doesn't scale to that resolution then it would. You could do just height without the width and it would have bars running down each side<!--content-->Originally posted by IncaWarrior <br />
Well if your picture doesn't scale to that resolution then it would. You could do just height without the width and it would have bars running down each side you would be setting the width to 100% and not the height to acheive that. If you do not mind the bottom of the image getting shaved off use this<br />
<div style="overflow:hidden; height:100%; width:100%; z-index:-1;"><img src=http://www.webdeveloper.com/forum/archive/index.php/"yourpic" alt="hey its my silly little image" style="width:100%;"/></div><!--content-->well one of those, it depends what size your picture is<!--content-->I can make it pretty much any size. What size should I use for it to look great in both the 1024 X 768 and the 800 X 600 resolution?<!--content-->Originally posted by jonathanhou <br />
I can make it pretty much any size. What size should I use for it to look great in both the 1024 X 768 and the 800 X 600 resolution? <br />
1024*768. The image won't look as bad downscaled to 800*600 as it would upscaled to 1024*768, I believe.<!--content-->
 
Back
Top