I am trying to find the code to fix a problem I have that when viewed in Firefox the site is really small. Does anyone know the fix for this.. To see what I mean visit this link..
Thanks for any help..
Website
Printable View
I am trying to find the code to fix a problem I have that when viewed in Firefox the site is really small. Does anyone know the fix for this.. To see what I mean visit this link..
Thanks for any help..
Website
Firefox handles dimensions differently than IE, try pasting this inside the head tags in the HTML document...
code:
<style type="text/css">
<!--
html, body {
height: 100%;
width: 100%;
margin: 0; padding: 0;
}
-->
</style>
NTD,
Thank you very much.. I have searched all over to fix this.. It works great..