You are not Logged in
Would you like to Login or Register

Today is: Friday, 21 November, 2008
Check this months hot topics

Adding a transparent background to a Vista Gadget

Adding a transparent background to a gadget is easy! Simply create a transparent .png file and reference it from your Gadget HTML.

Here is an example file (also attached to this article as a download):

Here is the HTML you need to use it:

<g:background 
    id="background" 
    src="background.png"
    style="position:absolute;top:0;left:0;z-index:-999;no=repeat;" />

Full Example

Download the code at the bottom of this article.

<html>
<head>
    <title>Hello, World!</title>
    <style>
        body
        {
            margin: 0;
            width: 130px;
            height: 200px;
        color: #ffffff;
        }
        #gadgetContent
        {
            width: 130px;
            top: 24px;
            text-align: center;
            position: absolute;
            font-family: Verdana;
            font-size: 10pt;
        }
    </style>
</head>
<body>
<g:background 
    id="background" 
    src="background.png"
    style="position:absolute;top:0;left:0;z-index:-999;no=repeat;" />
    <span id="gadgetContent">
        Hello, World!
    </span>
</body>
</html>
kick it on DotNetKicks.com del.icio.us digg Mister Wong YahooMyWeb Reddit Furl Spurl blogmarks

Related Downloads

Paul Hayman Skype
Author : Paul Hayman
Published : Wednesday, 30 May, 2007

Paul is the COO of kwiboo ltd consultant and has more than a decade of IT consultancy experience. He has consulted for a number of blue chip companies and has been exposed to the folowing sectors: Utilities, Telecommunications, Insurance, Media, Investment Banking, Leisure, Legal, CRM, Pharmaceuticals, Interactive Gaming, Mobile Communications, Online Services. Paul is the COO and co-founder of kwiboo (http://www.kwiboo.com/) and is also the creator of GeekZilla.

Add Comment

Enter your comment below and it will be submitted for moderation.

Your Name

Add Tag

Please enter tags for this article, seperated by semi-colon ;

View Tag's by : # articles | # views

More Publications

uTorrent Server Vista Gadget
Paul Marshall - 2/6/2007
A simple guide to creating your first Vista Gadget
Paul Hayman - 30/5/2007
Adding a transparent background to a Vista Gadget
Paul Hayman - 30/5/2007