Results 1 to 2 of 2

Thread: Watermark Backgound Image Script

  1. #1
    Join Date
    Aug 2007
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Watermark Backgound Image Script

    Watermark Backgound Image Script

    http://www.dynamicdrive.com/dynamicindex3/fixback.htm

    Is there a way to make the background transparent? I can change the color but would like to make it transparent.
    Thanks,
    Ron

  2. #2
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Learn CSS Opacity

    This will let you achieve what you want

    You can apply this in your body element
    Code:
    body{
    filter:alpha(opacity=40);
    -moz-opacity:.40;
    opacity:.40;}
    ...or you may wish to include it in your JS. See the links, there's a DOM tut.

    See if it helps
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •