You have friend request(s) X
Your Friends X
Start adding friends by visiting your favorite BabyHomePages.net sites and clicking on the green plus sign (+) below to send a friend request to the person who updates the site you are visiting.
Friends awaiting approval Remove friends
Waiting For Approval X
friends
Remove Friends X
friends
Favorite Sites X
 
X
 Message
Your Name: 
Your E-mail address: 
Enter this number
X
 Message
Enter this number
X
Turn off this Friends Bar
 Your Signature (used when you conact another member)
My Home button links to
http://www.babyhomepages.net/
My Editing Area
Other 
Logout
 
X
Your First Name
E-mail Address
Choose a password
Re-type Password
Enter this number
 
 
Log In Remember
 
Use this Friends Bar to keep up-to-date on all of your favorite sites. If you are not a BHP member, you can sign up for free.
Sign Up
Learn More
BabyHomePages.net Features Read What BabyHomePages.net Members are Saying Free Sign Up Questions?
Member Log In  
Bookmark and Share  
 

Help

Editing the Blank Style - Creating borders or frames on your front page

First off, make sure you are using the "Blank" style. The trick to making a borders around your front page is using background images or colors and HTML tables. To do that You'll have to insert code in to the HTML ( button in your editor).

You can change any item in red on all of the following code examples.

The first step is to set the background of the page. You can do that by inserting this code at the top:
<STYLE TYPE="text/css">
BODY {
background-image: url(http://www.babyhomepages.net/picture/?pid=0000000);
}
</STYLE>

If you do not want to use a image in the background replace the "background-image" line above with this:
background-color: red;

Now, to create the borders you'll have to insert the HTML code below. To make the borders wider increase the "cellspacing" value. To use a picture as the border change the value of "background" to the picture that you want to use. This example uses two borders. You can use as many as you want. Just make sure you have as many "</td></tr></table>" at the bottom of your page as you have "<table>" at the top.

<table cellspacing=15 cellpadding=0 width="100%" background="http://www.babyhomepages.net/picture/?pid=1111111" border=0><tr><td>

<table cellspacing=15 cellpadding=0 width="100%" background="http://www.babyhomepages.net/picture/?pid=2222222" border=0><tr><td>

THIS IS THE MAIN PART OF YOUR PAGE

</td></tr></table>

</td></tr></table>

If you want to use a color instead of a picture as the border change:
background="http://www.babyhomepages.net/picture/?pid=1111111"
to:
bgcolor="red"