NOVEL CIPTAAN SENDIRI /LEWLS\


Assalamualaikum and annyeong . Okay, selama ni kemain speaking bagai en ? tp hari ni, malam ni, rasa malas pulak .. da ah bosan tahap geben nii .. /lols\ betol lahh, esok dh sekolah,, and kembali hiatus until i want.. lols .. actually budak ni , tak faham pun mean of hiatus secara terperinci .. main ikut fikir die jee.. and fina akan hiatus dari isnin until friday ,.. mean , saturday and sunday jolah yang free nyeooo .. and time lima hari tu jelaa yang rasa rindu gile gile nak mengHAPDATE entry dekat blog busuk masam niii .. tibe tibe rasa rindu nak buat tutorial and freebies .. bersungguh sungguh hasutan syaitan tu tak nak orang belajar enn ?? aduishh ..

okay, actually , dah panjang gile lari tajukk .. and back to the main title ..
okay,, hari tu en .. enn enn .. fina ade update macam ni jugak en ? tak tahu ehh ? tak bace ah tuu .. ghikghikk .. btw  , fina dah tukar tajuk and link blog .. :)

actually, novel ni fina harap sangat ada sesiapa yang sudi nak kasi rensponding even tak hebat mana .. tak setaraf penulis terkenal yang masuk dalam tv , dalam papers ape ape semua tuu .. den cume tahu update dekat blog jaa... fina pun harap ada yang sudi nak jadi pembaca tetap online gituhh .. acewahh .. fikiran melayang jauh dohh ..

btw, kalau sudi nak baca ,, boleh click

NOVEL : PUTERA UNTUK SI KUPU KUPU

Okay, baca tajuk pun, tiba tiba rasa 'terbatal niat' nak bukak aka tekan link tu en ?? aloooo ..*monyok* ce try baca.. den nak mintak pendapat joo .. kalau ada salah silap kasi tahu denn .. /lols\ << bajet ah fina cakap n.9 sangat en .. padahal orang ipoh ..

okay, tapi serious talk fina cakap, mungkin tajuknya macam tak gempak kan ? tp, insya-Allah best .. *perasan sikit puji diri sendirii .. ^^ *

oh ye , kalau dah baca tu , rajin rajin lah komen ye :) Kay Assalamualaikum , jasa amat and  of course i'll appreciate it very much :)

Tutorial :Marque Words At Tab (TD)

Assalamualaikum and annyeonghaseyo . Firstly , i want to say, Salam Maulidur Rasul :) ( Pray for keredhaan Allah S.W.T ) :)

Okay, maybe some of you already know about it, so Fina akan ajar for those who's not know yet.. (yehett , lol tibe tibe jee )

okay, actually bukan nak ajar punnngg .. fina just nak share sahajaaa...

first of all, fina nak explain , the mean of marque words .. actually like marque tu tulisan bergerak lah.. macam dekat status yang berjalan jalan tu kan ? tapi yang ni dekat tab ..
like this ..

1. dashboard > layout > Add a gadget > Html/Javascript
2. copy paste code dekat bawah ni dekat dalam html/Javascript tuu
<script language=javascript>
msg = "Title Blog";
msg = "..." + 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>

purple :tulis apa apa yang korang nak

save :) 

Credit ; Farahdeena

Tutorial : Cursor Snow effect


Assalamualaikum and annyeong ... Okay, i think, of course all of you know what the mean of cursor effect right ?? want to do it?Okay, let's start . oh ya, btw , this for blogskin only . :)

1.dashboard > template
2.press ctrl + f , and search this words >> <title>#ELFishy</title>
3. and copy all the code under this ....


<script type="text/javascript">
                    // <![CDATA[
                    var colour="pink";
                    var sparkles=50;
          
                    var x=ox=400;
                    var y=oy=300;
                    var swide=800;
                    var shigh=600;
                    var sleft=sdown=0;
                    var tiny=new Array();
                    var star=new Array();
                    var starv=new Array();
                    var starx=new Array();
                    var stary=new Array();
                    var tinyx=new Array();
                    var tinyy=new Array();
                    var tinyv=new Array();
                    window.onload=function() { if (document.getElementById) {
                      var i, rats, rlef, rdow;
                      for (var i=0; i<sparkles; i++) {
                        var rats=createDiv(3, 3);
                        rats.style.visibility="hidden";
                        document.body.appendChild(tiny[i]=rats);
                        starv[i]=0;
                        tinyv[i]=0;
                        var rats=createDiv(5, 5);
                        rats.style.backgroundColor="transparent";
                        rats.style.visibility="hidden";
                        var rlef=createDiv(1, 5);
                        var rdow=createDiv(5, 1);
                        rats.appendChild(rlef);
                        rats.appendChild(rdow);
                        rlef.style.top="2px";
                        rlef.style.left="0px";
                        rdow.style.top="0px";
                        rdow.style.left="2px";
                        document.body.appendChild(star[i]=rats);
                      }
                      set_width();
                      sparkle();
                    }}
                    function sparkle() {
                      var c;
                      if (x!=ox || y!=oy) {
                        ox=x;
                        oy=y;
                        for (c=0; c<sparkles; c++) if (!starv[c]) {
                          star[c].style.left=(starx[c]=x)+"px";
                          star[c].style.top=(stary[c]=y)+"px";
                          star[c].style.clip="rect(0px, 5px, 5px, 0px)";
                          star[c].style.visibility="visible";
                          starv[c]=50;
                          break;
                        }
                      }
                      for (c=0; c<sparkles; c++) {
                        if (starv[c]) update_star(c);
                        if (tinyv[c]) update_tiny(c);
                      }
                      setTimeout("sparkle()", 40);
                    }
                    function update_star(i) {
                      if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
                      if (starv[i]) {
                        stary[i]+=1+Math.random()*3;
                        if (stary[i]<shigh+sdown) {
                          star[i].style.top=stary[i]+"px";
                          starx[i]+=(i%5-2)/5;
                          star[i].style.left=starx[i]+"px";
                        }
                        else {
                          star[i].style.visibility="hidden";
                          starv[i]=0;
                          return;
                        }
                      }
                      else {
                        tinyv[i]=50;
                        tiny[i].style.top=(tinyy[i]=stary[i])+"px";
                        tiny[i].style.left=(tinyx[i]=starx[i])+"px";
                        tiny[i].style.width="2px";
                        tiny[i].style.height="2px";
                        star[i].style.visibility="hidden";
                        tiny[i].style.visibility="visible"
                      }
                    }
                    function update_tiny(i) {
                      if (--tinyv[i]==25) {
                        tiny[i].style.width="1px";
                        tiny[i].style.height="1px";
                      }
                      if (tinyv[i]) {
                        tinyy[i]+=1+Math.random()*3;
                        if (tinyy[i]<shigh+sdown) {
                          tiny[i].style.top=tinyy[i]+"px";
                          tinyx[i]+=(i%5-2)/5;
                          tiny[i].style.left=tinyx[i]+"px";
                        }
                        else {
                          tiny[i].style.visibility="hidden";
                          tinyv[i]=0;
                          return;
                        }
                      }
                      else tiny[i].style.visibility="hidden";
                    }
                    document.onmousemove=mouse;
                    function mouse(e) {
                      set_scroll();
                      y=(e)?e.pageY:event.y+sdown;
                      x=(e)?e.pageX:event.x+sleft;
                    }
                    function set_scroll() {
                      if (typeof(self.pageYOffset)=="number") {
                        sdown=self.pageYOffset;
                        sleft=self.pageXOffset;
                      }
                      else if (document.body.scrollTop || document.body.scrollLeft) {
                        sdown=document.body.scrollTop;
                        sleft=document.body.scrollLeft;
                      }
                      else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
                        sleft=document.documentElement.scrollLeft;
                     sdown=document.documentElement.scrollTop;
                      }
                      else {
                        sdown=0;
                        sleft=0;
                      }
                    }
                    window.onresize=set_width;
                    function set_width() {
                      if (typeof(self.innerWidth)=="number") {
                        swide=self.innerWidth;
                        shigh=self.innerHeight;
                      }
                      else if (document.documentElement && document.documentElement.clientWidth) {
                        swide=document.documentElement.clientWidth;
                        shigh=document.documentElement.clientHeight;
                      }
                      else if (document.body.clientWidth) {
                        swide=document.body.clientWidth;
                        shigh=document.body.clientHeight;
                      }
                    }
                    function createDiv(height, width) {
                      var div=document.createElement("div");
                      div.style.position="absolute";
                      div.style.height=height+"px";
                      div.style.width=width+"px";
                      div.style.overflow="hidden";
                      div.style.backgroundColor=colour;
                      return (div);
                    }
                    // ]]>
                    </script>
4.paste under the code that you all serach just now ( under title blog )
5.red : the colour of snow effect.
6.preview and save :)

credit : k.atiqah

Request Header #Present


Assalamualaikum and annyeong .. okay, i'm totally forgot about this header that Aini ask me to do for giveaway's present. Btw,, sorry if you doesn't like this header .... btw , you can click the image to get the url .

Okay i didn't mind if you want or doesn't want to use this header but i'm very very appreciated because you request some header from me :)

Assalamualaikum .

Tutorial : Get Link image from computer for template


Assalamualaikum and annyeong.. Okay, actually i don't know how specific the tuto is .. but this tuto is my style .. i'm godek godek and think and think .. so, maybe not to smart to do it .. like i say , this tuto not to specific like pro ,, hehee ..

btw , this tutorial mean , you get the link (e.g http://blablabla.com/lols/sfgfhj/png.) or else url .. and you get the image form you computer and want put it into ur template .. Template designer or classic ..

Okay, let's start
dashboard > new post > * don't update any post *

click image and search the image from you computer ..
okay, and will appear like this ..
after that , when the image appear on the post ...


and then , take the url like this ..
okay , and then go to the template and put it at where you want ... actually, like me ,, i use it for header , cursor or sometime else .. :)  btw,
DON'T RE-TUTO okay, :) this is my idea and hope don't copy cats anything especially without my permission . ..

Tutorial : Read More ....


Assalamualaikum and annyeong . I know, i'm very late to to this tutorial because many bloggers, already know how to do it .. but , i'm still do it because i want .. hehee .. btw, actually, read more uses for post that too long only ...

dashboard > new post *update what you want like always*
and do like this ..


okay , bold the words until where you want it appear in the main post ...  like the top picture ..

and click ..


see the picture' step .. and done , you can publish it :) Okay  , Assalamualaikum .

Tutorial : Image on post, don't have a link


Assalamualaikum and annyeong . Hmm, actually this tutorial for avoid people to copy and paste our picture to their blog . and re-freebies or re-tuto , or else meant, COPY-CATS .. and to avoid it , don't put a link at the image of tutorial that you make. How ?  just a very simple ..

1. dashboard > new post *update anythings you want *
2.put a image in the post and click the image ..


3. 3. click link, and don't put any link ..

DONE ! Assalamualaikum .

Tutorial : Labels

Assalamualaikum and annyeong . still have time to give  tutorial ? hahahaa .. btw, just to release tension . Btw, i know this tuto not to much important and some fo you, already know it , but i don't mind it, i just do it because i'm very tired , very boring right now .

okay , let's start
dashboard > new post > *update like always, what you want*

see ? click labels and you can see like this
okay Assalamualaikum :)

TENSION !! Bw , Tuntut Hadiah ~


Assalamualaikum and hye :) Okay , miss this blog very much .. even just for seven days not updated ... .. i think like seven YEARS !! wkwkwkwkwk ... seriously ! Btw , now i have a mood to update my blog because i'm very tension right now. Tension with everything that misrable. Okay , sometimes life is misrable and sometimes was otherwise. And of course , every person, each person has their own problems and me too .

Okay, just for 7 days , but i felt like 7 years, you know .. i don't know why i'm become like this , this year .. actually ,last year i'm too happy when i can go to school .But not this year.. i'm felt very misrable .. ohhh TENSION !! i don' know why , every days i'm back from school, my face look's like moody , have a big problems ...

Hmmm ... i don't know how to explain my situation right now ... i'm very hope that i'll release my tension soon and not more stress stress .. /lols\ .. << i don't know why i'm still laughing although it's just typing ..

Oh ya ,,, before i'm forgot .. that's anybody not 'tuntut hadiah' for giveaway ?? i'm so sorry , i'm so busy right now and i almost forgot about the giveaway .. for the Aini  , can you give me the characteristic's header that you want from me .. Insya-Allah i will do it quickly ..

i'm so sorry ... i almost forgot about it ..

TAPAW (BMB)


Assalamualaikum and annyeong :) Okay, maybe today i'm too excited even the special day is last night.
What special day ?? Actually today is a special day also .. why ? yoseob birthday's .. nanno mollayo ? okay , go to the uncle google and search for ' yoseob profile' you can see the truth .

 Btw , this entry not to talk about him .. ehehehe , anw , yoseob oppa !! saeng-il chugha haeyo ... hehe .. okay biane .. don't present to you .

oh ye , continue with the title .. last day , my mother, my sister, my brother and of course i .. go to Aeon Station 18 at Ipoh , Perak . Maybe on 2:00 pm like that laa ... and like we all know , there was audition for Bintang Mencari Bintang (BMB) ... okay, and of course we go there for that audition .. opps.. not to join and try for Bintang Mencari bintang.. but just to see only . want to see who try to join BMB ... and when we arrived there,,, the audition still taked time to rest for a while , and the time we go for shopping .. lailailai .. and on 3:30 the BMB audition's start .. and guess what ???


Gang of TAPAW (BMB) also came ... wahhh ... hahaha .. and u know what , until 2:00 pm and until 6:30 like that we watch the audition .. some of that was funny and some of the person hmmm .... mean , not funny at all . kak ogy was there for became a jury  also says like that .. not funny at all ..


and the audition end until 6:30 and before we all back , we snap some picture of tapaw.....  And 

/lols\ not to see my face but see the both of them .
Hahahaa .... 

Bintang mencari bintang .. tentedengg ..


okay actually have many more picture that we take and some of them are video .. but i'm think, not need to put it here .. hehe :) Oh okay , , Assalamualaikum .

Heavy blog.


Assalamualaikum and haii :) actually nothing that i want to write but last day i saw someone comment about my blog. he say's , now my blog is quite heavy ,, but it's okay , i think so .. so now i just put an important things such as followers, blog archive and cbox ..... and  maybe some introduction from me . Ask.fm i didn't put it right now because i'm not active with ask.fm but only at twitter  .. oh btw , i don't know want to 'get out' what things anymore because i think all that i put right now is quite imporant for bloggers and for me  too . any suggestion for me ?

btw, i check my blog to see how heavy my blog, but alhamdullilah less than 100 kb :)
and maybe some of you don't see my followers widget but when you look at left and you can see it . :) Kay lah , nothing more :) Assalamualaikum , thanks for comment about my blog :)

Click Navigate then go to the link

Assalamualaikum , rasanya ramai dah tahu kut tapi tak pelah fina rajin pulak nak buat

. Bagi sesetenggah blogger buat navigate macam ni untuk letak macam link ke , tutobies ke , biases ke atau apa ape je .. tapi benda tu semua kena buat new blog lah . Fina pun buat navi macam ni sbb

 kalau kita nak tukar skin blog baru , tak payah nak penat penat copy tutorial atau freebies yang ada dalam skin lama tu. kita copy link blog tutobies tu je .. tak dua kali kerja . :) 
okay straight to the point aje lah .

1. dashboard > template > ctrl f = cari navigate blog korang.
2. sama ada nak tukar atau tambah , copy paste code dekat bawah ni

<a class="class" onClick="document.getElementById('entry').innerHTML=document.getElementById('blog').innerHTML"href="LINK" title="">Title</a>

oren : ID page . korang boleh tengok dekat navigate blog korang ..
hijau : ID entry , boleh tukar mengikut kesesuaian
blog : tukar mengikut kesesuaian
merah : url link
purple : tajuk yg akan keluar dekat navi nnti :)

okay babai .. Assalamualaikum :)

Status Box #1

Assalamualaikum :) Ni kiranya tutorial yang pertama di tahun 2014 .. ceh itu pun nak kasi tahu kaa .. perlu -,-   .. okay malas nak berbasa basi , esok fina dah nak sekolah so nnti takada masa nak bertutorial berfreebies freebies .. let's start ..


1. maked new blog
   - macam biasa letak url , edit tak perlu
2.change template from designer to classic , kalau tak tahu boleh tengok sini >>  CLICK
3. click >>  template
  tekan ctrl + A and delete .
ariexxn