Page 1 of 1
Layouts
Posted: Fri Apr 14, 2006 7:59 pm
by jp1230007
Anyone know how to make custom myspace layouts?
Ooh and also... I wanna know how to make a background for a freewebs..
Posted: Sat Apr 15, 2006 7:01 pm
by Impertinence
Background for Freewebs:
Create a CSS page by creating a page called "mainstyle.htm" and then, after it's created, renaming the extension to CSS. In the CSS page, put
<style type="text/css">
body {
background-color: WHATEVER-COLOR-HERE;
}
</style>
Or, you can replace background-color with background-image: url(URL-OF-IMAGE-HERE);
Then, go to whatever page you want to apply it to, and put this in the <head> area:
<link rel="stylesheet" type="text/css" href="mainstyle.css">
That should work.
