Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.
Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
1.Insert a HTML box on to the page by going to tools, controls then add HTML
2.Go to http://www.htmlbasix.com/scrollbargenerator.shtml to create the scrollbar you want
3.Use the colour codes below to fill in the numbers on the website. Make sure to keep the number sign (#) at the beginning of the numbers you are inserting.
4.Copy the colour code you have created and paste it into the HTML box you had created on your page.
put your HTML here
TIP #2.Change your right click protection message. From "Please contact the owner if you want to save this picture." to what ever message you would like.
1.Add a HTML box (tools, controls, add HTML)
2.Copy and paste the code from the box to the right into your HTML box.In the code where it says Please Contact the owner if you want to save this picture. Delete that and put in your own message.
<script language="JavaScript">
<!--
/*
No rightclick script v.2.5
(c) 1998 barts1000
barts1000@aol.com
*/
var message="Please Contact The Owner If You would like to save this picture.";
//
function click(e){
if (document.all){
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers){
if (e.which == 3){
alert(message);
return false;
}
}
}
if(document.layers){
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//-->
</script>
You can use the colours from the colour code chart from TIP #1 as your font or back ground colour too.
TIP #5.How to make a copy of your screen
Press the Print Scrn Button on your Keyboard.. Go to paint and hold down control and press V. To cut an image out of the screen use the button I circled, go around the object with it, right click on the image and click copy to..
TIP #6.Where To Find Music Video HTML Codes
1.Go to www.videocodes4u.com or www.hotcodez.com and find the video you want.
2.Copy the HTML Code and paste it into a HTML Box (Tools, Controls, Add HTML)
3.If you got your video from videocodes4u.com the last couple words in your video code are Video code provided by videocodes4u.com if you dont want it to say video code provided by www.videocodes4u.com under your video you can just delete those last few words from the code
4.If you get a music video code and it appears like you can't delete it. If you want to delete the video off your page, put your page into safe mode and delete the HTML. To put your site in and out of safe mode click the blue dot above the preview button.
Safe Mode-->
TIP #7.Getting Polls
1.Sign Up for an account at www.pollhost.com
2.Fill out your question and answers.
3.Copy the HTML Code and paste it into a HTML Box on your website (Tools,Controls,Add HTML)
TIP #8.Get a Shoutbox
1.Go to tools then Controls
2.Press Add Shoutbox..very simple lol
-to change the colour of your shoutbox you go to page editor, press the pencil in the top right hand corner of your shoutbox and then just change the colours. if that makes sense.-
TIP #9.Get Fading Pages
1.Add a HTML box (Tools, Controls,Add HTML)
2. In the html box put this code- < meta http-equiv="Page-Exit" content="blendTrans(Duration=##)" >
3.Take out all of the spaces in the code and where it says ## put the number of seconds you want it to take for your page to fade. mine is set at 03
2.Open a HTML box (tools, controls, add HTML box) and paste the code in.
TIP #11.Flickering Lists
Ok since that other piczo dudes website didn't make sense I will put the code on my website and hope it makes sense! This code it to make flickering my page lists. (go over a page I have and it will turn backwords)
1.Copy the code that's in the box to the right.
2.Create a page and then make a text box with the code and replace where the code says YOU PAGE NAME HERE with the name of your page
3.Link the text to a page by doing what is shown in the picture below
The code should change all the links on your page and make them flicker!
<style type='text/css'><!--a:hover{filter:fliph(color:#000000,strength=3);height:0px;width:inherit] //--></style>PAGE NAME
3.In the code where it says button text, write what you want your button to say. like mine says "Press Me*".. then in the code where it says TEXT HERE you write what you want your pop up to say
<INPUT TYPE="button"VALUE="BUTTON TEXT HERE"onClick='alert("TEXT HERE")' ></FORM>
1.Go to this website http://fg-a.com/pulldownmenu.shtml and fill in all the stuff you need.Press Generate
2.Enter a HTML box (tools, controls, add HTML) and then just where it says "show me the drop down menu" on the website, underneath should be a code. you copy the code from the website into your HTML box
TIP #14.Get Countdowns
HTML CODES
1.Go to the HTML page below and copy the [COUNTDOWN CODE]
2.In the code where it says month here, day here, year here. you change them to the date your counting down to.
3.In the code where it says TEXT HERE. you write in something like "Days until my birthday" or "days until school is done" or whatever your counting down to
4.Open a HTML Code box (tools, controls, add html) and paste in the code
Days Until My Birthday..
TIP #15.Enter Pages
1. Go to organizer and create a new page you want as your enter page.
2.Go to the organizer of the page you have made.
3.Press add enter page and then when the pop up comes up press Make this page the enter page.
TIP #16.People Can Change Your Background When They Visit
1.Add a HTML Box (Tools, Controls, Add HTML)
2.Use the code from the box to the right and put it in your html box.
3.You can then change the button text by changing in the code where it says "Push Me".. You can also change the colour of the background by also changing the code, in the code where it says 000000 you put in your own colour code. You can get colour codes from the chart in Tip #1
<form><input type="button" value=" Push Me " onclick="document.bgColor='#000000'"></form>
2.Copy the code from the box below and put it in the HTML box.
3.At the end of the code where it says KIRSTEN with each letter seperated by put in your own letters and if you want to add more letters just add more
4.If you want to change the colour of your word from white, choose a colour code from the chart in tip 1. In the code where it says #000000 replace the numbers with one of the six digit letter/number combonations from the chart.
TIP #17.Words in the Browser at the top of the page
1.Add a HTML Box (Tools, Controls, Add HTML)
2.Copy the code from the box to the right and put it in your HTML box.
3.In the code, take out where it says your words here, replace those words with your own.
<SCRIPT>
//change title text to your own
var titletext="Your words here"
var thetext=""
var started=false
var step=0
var times=1
function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
document.title = titletext;
setTimeout("anim()",1);
}
thetext = titletext;
}
}
function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}
function anim()
{
step++
if (step==7) {step=1}
if (step==1) {document.title='>==='+thetext+'===<'}
if (step==2) {document.title='=>=='+thetext+'==<='}
if (step==3) {document.title='>=>='+thetext+'=<=<'}
if (step==4) {document.title='=>=>'+thetext+'<=<='}
if (step==5) {document.title='==>='+thetext+'=<=='}
if (step==6) {document.title='===>'+thetext+'<==='}
setTimeout("anim()",200);
}
if (document.title)
window.onload=onload=welcometext
</SCRIPT>