Convert HTML Webpage to a Windows Gadget

931 Views Asked by At

I wanted to convert a webpage to a Windows Gadget. Basically, the Webpage has nothing but 2 or 3 images & a countdown. I tried to do it but unfortunately the size of the gadget shrinked to like around 2px width by 8px height. I tried Amnesty Generator but I want the gadget to work offline too.

P.S. I made the html page liquid so that the gadget wouldn't have any problem.

Regards,
Netizen

1

There are 1 best solutions below

0
On

Be sure to set height and width of the element in your css.

body
{
    height: 150px;
    width: 300px;
}