Results 1 to 3 of 3

Thread: Help!!!!

  1. #1
    Join Date
    May 2007
    Posts
    1

    Default Help!!!!

    I've just started my site and want to change my background and colou, what do i do? :)

  2. #2
    Join Date
    May 2007
    Posts
    6

    Default

    if you open your website in a text editor you can change the background color by changing the number value here: <bgcolor>

    you can add this into the background carrots <> to add an image: background="wwwyoursitecom/yourpicture.jpg"

    there are a few more tweaks that will allow you to create variations of the above (such as tiling a background image or making it static).

    just ask google or use your browser to view source code from sites which will give you a good idea of how other people make their backgrounds

  3. #3
    Join Date
    Sep 2006
    Location
    Kerala, India
    Posts
    17,476

    Default

    <BODY BGCOLOR="#FFFFFF">

    Something really cool

    </BODY>

    Output is :

    Something really cool

    Will be displayed in white background.

    Here the colour is obtained by combining the three primary colours viz Red, Blue and Green. Their values are in hexadecimal start from 00 to FF.

    You can specify a background image instead. (Note, the image should be in the same folder as your HTML file).

    <BODY BACKGROUND="swirlies.gif">

    Something really cool

    </BODY>

    Will be displayed in swirlies background. swirlies is a small gif file and it will be tiled to form the background of the page. When the size of the .gif is small, the loading of the page will be faster. So keep the .gif size the least.

    For more info on html visit :

    http://phptutorial.bizhat.com/

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
  •