Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Graphics (https://www.askmehelpdesk.com/forumdisplay.php?f=449)
-   -   Back Ground Pic (https://www.askmehelpdesk.com/showthread.php?t=169934)

  • Jan 7, 2008, 03:24 PM
    Faithpal28
    Back Ground Pic
    I am trying to create a background on my web page. Every background formula that I try is not working.
    How can I change the background
  • Jan 15, 2008, 07:13 PM
    vingogly
    Here's how you do it in HTML:

    <body background="image.gif">

    Using CSS is recommended instead of this outmoded HTML approach. Here's how you'd do it in CSS:

    <style type="text/css">
    body
    {
    background-image:
    url('image.gif')
    }
    </style>

    In both cases replace image.gif with the path to your image.

  • All times are GMT -7. The time now is 09:15 PM.