Make my site into myspace

Discussion in 'HTML & Website Design' started by hand, Apr 4, 2007.

  1. #1
    Is there an easy way to make my current website a myspace layout. I really want to implement the top banner and the background on my site into the layout.

    My site is http://computerrepairbusiness.net/
     
    hand, Apr 4, 2007 IP
  2. Louis11

    Louis11 Active Member

    Messages:
    783
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    70
    #2
    Myspace layouts are usually shotty at best. It shouldn't be that hard to implement the background image into your myspace layout, or the banner... Could be handled like...

    
    <style>
    body{
       background-image: url("background.gif");
       }
    #header{
       background-image: url("head.gif");
       background-repeat: no-repeat;
       /* correct size */
       width: 00px;
       height: 00px;
       }
    </style>
    
    Code (markup):
    Include that in the "About Me" section, and call up a <div id="head"></div> for where you want the header to be.

    But no, shouldn't be that hard :)
     
    Louis11, Apr 4, 2007 IP