Piczo

Log in!
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.
Ok, I got it
Tip: bliinkiing cOlOred scrOll bars*
Tip: bliinkiing cOlOred scrOll bars*
Page 1
Page 3
:do you like the blinking colored scroll bars? it's simple enough to do - just copy & paste the code to your right into a html code box on your page.

change the colors to what you desire by using the "color codes" on the previous page. the diagram below shows you which part of the scroller is which so you can plan a color scheme accordingly*
<script>
var mode=0
function blinkscroll(){
if (mode==0)
document.body.style.scrollbarFaceColor="FF00FF"
else
document.body.style.scrollbarFaceColor="9900FF"
mode=(mode==0)? 1 : 0
}
document.body.style.scrollbarArrowColor="0000FF"
document.body.style.scrollbarTrackColor="0000FF"
document.body.style.scrollbarShadowColor="0000FF"
document.body.style.scrollbarHighlightColor="0000FF"
document.body.style.scrollbar3dHighlightColor="0000FF"
document.body.style.scrollbarDarkShadowColor="0000FF"
setInterval("blinkscroll()",1000)
</script>

Up | Down | Top | Bottom
Tip: Pop-up upon entering & exiting*
if you want a pop up tp appear when someone enters your page - add this into a html box:

<SCRIPT>alert('iinput yOur message here')</SCRIPT>

if you want a popup to appear when someone exits your page - add this to a html box:

<BODY onUnload="alert('TEXT HERE');">
Tip: Changing link styles*
if you are tired of links that only have a simple underline, then following these steps to jazz things up ---
Step 2: Replace the "text-decoration:none". the first word tells you what it will do to your link and after the arrow is what you should replace the "text-decoration:none" with in order to acheive it.


underlined ---> text-decoration:underline
underline & overline ---> text-decoration:underline overline
background color ---> background-color:COLORHERE  
slashed out   ---> text-decoration:line-through
cross cursor ---> cursor:crosshair  
cursor points up ---> cursor:n-resize
cursor points down ---> cursor:s-resize
cursor points left ---> cursor:w-resize  
cursor points right ---> cursor:e-resize
hourglass cursor ---> cursor:wait
bold font   ---> font-weight:bold
italics text---> font-weight:italic
sized text ---> font-size:#pt
Step 1: Copy & Paste the following code into an html box.
What the html code means:
(A:LINK)--> just when its normal
(A:VISITED)--> once you visited it  
(A:ACTIVE)--> when you click on it
(A:HOVER)--> when you put your mouse on it

**doing these steps will apply to all links on that page.