Website background

Discussion in 'HTML & Website Design' started by adsenseplr, Jan 6, 2010.

  1. #1
    Hi,
    Can anyone point me in the right direction for some help on a website background. I am just about to launch my own e-product and want a background behind the sales page with my logo/text at a 45degree angle - I am sure you have all seen the kind of thing I mean (won't post an example site as don't want to come across as a spammer!) Sure there must be free online program to create one and set background colour etc. just can't find one....
    All replies appreciated
    Regards
    Dickie Boy
     
    adsenseplr, Jan 6, 2010 IP
  2. vinodvyas12

    vinodvyas12 Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    first create background image in photoshop.

    width should be 2 or 3 pixel.. height as per your page.

    and set in page property in background..

    You can see in your website.
     
    vinodvyas12, Jan 7, 2010 IP
  3. mrpaisa

    mrpaisa Guest

    Messages:
    741
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Web designers compete to impress visitors with appealing visual elements. background images are one of those visual element that when designed properly, can create an amazing atmosphere and convey the style the designer has choosen.....
     
    mrpaisa, Jan 7, 2010 IP
  4. Lex350

    Lex350 Notable Member

    Messages:
    1,889
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    215
    #4
    What he said then add the image to body back round (css file) and set to repeat vertical or hor depending on the size of your image.
     
    Lex350, Jan 7, 2010 IP
  5. mrpaisa

    mrpaisa Guest

    Messages:
    741
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    The ground or scenery located behind something.
    the code for creating a background.
    <style type= "text/css">
    <!...>
    body{
    background - image:url(images/background_images_name.gif);
    }
    ...>
    </style>
     
    mrpaisa, Jan 10, 2010 IP
  6. m7md_cis

    m7md_cis Peon

    Messages:
    91
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Hi,

    You can use background properties in CSS like this:

    background-image:url();

    background-position:center;
    or
    background-position:top;
    or
    background-position:bottom;
    or
    background-position:left;
    or
    background-position:right;

    background-repeat:repeat;
    or
    background-repeat:no-repeat;
    or
    background-repeat:repeat-x;
    or
    background-repeat:repeat-y;
     
    m7md_cis, Jan 10, 2010 IP
  7. YMC

    YMC Well-Known Member

    Messages:
    2,787
    Likes Received:
    404
    Best Answers:
    4
    Trophy Points:
    190
    #7
    YMC, Jan 11, 2010 IP