• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML / Javascript question....

Fuzzmuncher

Platinum Member
How do I code a javascript thumbnail so that the real image pops up in a window exactly the size of the image?

When I tried this, the pop-up window is always a little bigger than the image & there's white space around it.

 
You have to specify in the HTML of the popup window that you don't want margins.

You can do this via HTML with the following:

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
 
Back
Top