Showing posts with label How To. Show all posts
Showing posts with label How To. Show all posts

How to put nuffnang ads between post.




The title said it all...
Disini aku tunjuk cara paling jelas nak letak Nuffnang ads between post korang..Aku rasa korang tau script mana yang korang perlukan (LARGE RECTANGLE 336 x 280).

Cara nya mudah je, ikuti steps dibawah.

1.Pergi ke Design - Edit HTML - Check kat "Expand Widget Templates".

2. Korang search (CRTL + F) tag nie ....... <b:if cond='data:post.includeAd'> 
atau nak mudah seach perkataan ni je " includeAd " ...refer pic 1 kat bawah.

3. Jumpa tak? kalau ye, korang scroll kat bawah tuh smpai jumpa tag aku tunjuk dalam pic tuh.

 Pic 1

4. Jumpa dah?? Kalau ye korang copy script ads korang kat nuffnag tuh then paste kan between tag


</b:if>
(paste nuffnag script)
</b:loop>

Refer pic 2 kat bawah nie.
Pic 2

5. Preview template. Tapi rase terus save je la..mesti jadi punye.

Thanks...

Tips untuk elak WiFi kene curik.




Nie serba sedikit ti cara2 untuk elak WiFi korg dari kene curik senyap2 oleh org lain.

1. Pastikan modem router yang anda gunakan mempunyai kata laluan.Tukar
kata laluan sedia ada atau default yang disetkan pada modem router.

2. Set modem router anda untuk nyahkan fungsi Broadcast SSID.
SSID (Service Set Identifier) merupakan perimeter bagi nama rangkaian
anda dalam persekitaran rangkaian tanpa wayar.

how to make animated blog name (browser tab)





simple just go to Design - Edit HTML - Find (CTRL+F)  <head> tag.

Copy & Paste the code below before the <head> tag.


<script type='text/javascript'>
//<![CDATA[
msg = "UR WELCOME MSG HERE";
msg = "***Your Short Description Here***" + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
if (pos > msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();
//]]>
</script>


Change the highlighted msg with your own desired msg.
You can customized those stars with any symbols you like.

How to Disable Right Click





all you have to do is go to Design - Edit HTML
Find (CTRL+F)   <head> tag.
Copy & paste the code below after the <head> tag.
Save your template backup if you want.


<script>
    function disableRight()
    {
        if(event.button==2)
        {
            alert(&quot;Right Click Not Allowed!&quot;);
            return false;
        }
    }
    document.onmousedown=disableRight;
</script>



Save your templates. Done!

Disable Copy & Paste from your blog




Thinking of avoiding ppl from copying your blog's entry??

Try this.
Go to Design - Edit HTML - Cari (CTRL+F)  tag <head>
copy the cide below.

Click here to copy the link

<!-- Disable Copy and Paste-->
<script language='JavaScript1.2'>
function disablesele
ct(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>


Paste the code below this <head> tag.
Save Templates. Done.


Related Posts Plugin for WordPress, Blogger...