Make A Link
- To display a text link:
<a href="URL_OF_SITE_HERE">Displayed Text </a>
- To display a text link which opens into a new browser window:
<a href="URL_OF_SITE_HERE" target="_blank">Displayed Text </a>
- To make a picture a link:
<a href="URL_OF_SITE_HERE"><img src="URL_OF_IMAGE_HERE"></a>
How to disable the follow button on your blog!
Add this code to your theme’s CSS:
iframe {display:none !important;}
Done! Your follow button will be gone!
** haha i think no one can use this tutorial :P
Marquee Text Effect
Scrolling Text/Images (Marquee)
Normal scroll:
<marquee>CONTENT HERE</marquee>
“Bouncy” (Going Back & Forth):
<marquee behavior="alternate">CONTENT HERE</marquee>
Marquee directions:
<marquee direction="LEFT, RIGHT, UP OR DOWN">CONTENT HERE</marquee>
Sliding Marquee (Will Stop at the End):
<marquee behavior="slide">CONTENT HERE</marquee>
Marquee That Will Stop On Hover:
<marquee onmouseover="this.stop();" onmouseout="this.start();">CONTENT HERE</marquee>
Marquee Speed:
<marquee scrollamount="SPEED #">CONTENT HERE</marquee>
Note:
- Just edit all BOLD parts.
- Content can either be text or images.
- Retype all quotation marks (“”) to be sure that codes will work.
- For Marquee Directions, Left is the default direction.
- For Marquee Speed, The higher the Number, the faster the scroll. The Lower the number, the Slower the Scroll.
Putting a Background
1. Go Customize » Appearance » Background Image and Upload image from you computer.

2. If your theme do not have this, you must upload your image to get the url address/direct link, then find the code background-image:url();
3. Paste the direct link between the parentheses.

Disable Right Mouse Click
Copy this code
<script language=JavaScript>
<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>

** If it’s not working, try paste the code between <head> and </head>







