follow





About Post Links Shout Stuffs
Tutorial - Pop out box *classic template/blogskin template

Tanpa membuang masa,jom kita start :)

- mula-mula Ctrl + F,nanti ada kotak kecil kat atas tu keluar kan,then korang tulis kat kotak tu "</style>"
  dah jumpa,bagus..Then korang copy code dekat bawah nee,and korang paste kan code bawah nee sebelum </style> tadi..

.lalo{
font-family:trebuchet ms;
font-size: 11px;
text-align: left;
position: absolute;
top: 260px;width: 440px;
height: 350px;
padding: 10px;
border-radius:10px;
background:#f5f5f5;
overflow-y: scroll;
overflow-x:hidden;
}

- Dah siap,goodgood :D..Then korang copy pulak code dekat bawah nee and pastekan selepas code "</style>" tadi..

 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".lalo").hide();
$(".lalo-click").click(function(){
$('.lalo').slideToggle("1s");
return true;
});
});
</script>

Click <a class="lalo-click" style="color:#ffffff;cursor:crosshair; -webkit-transition:.5s; -moz-transition:.5s;font-family: denne etude;
font-size: 24px;">here</a> to know more about the webmaster ♥

Yang Dyra buat warna macam ni korang tukarkan kepada ayat korang sendiri kay..We're not done yet :)

- Then korang Ctrl + F and dia akan keluar kotak kecil kat atas tu kan,then korang type dekat kotak tu "</body>"..Then korang copy code dekat bawah ni and pastekan selepas code "</body>" tadi :)

<div class="lalo">
<div class="title">The Lady ★</div>
<center><img src="http://i1205.photobucket.com/albums/bb427/DyraNadhirah/PICT0167edited-1.jpg"border=0></a></center><br>
Replace with your photo :) My photo is ugly,hahah :)<div>
★ Heyyo,I'm Nur Nadhirah <b>Nizarudin</b>,Dyra for short..I'm eleven..Replace this with yours :)<div>
★ Write here :)<div>
★Write here :) <div>
<br>
<b>bold</b> <i>italic</i> <u>underline</u><div>
</div>

So,kita dah siap..Dyra harap korang suka dengan tutorial nee,apa-apa comment kay :) Good Luck :)

New skin !

Okayy,Dyra mmemang dah lama tak buat skin sebab Dyra busy sikit..
Klik kat bawak nee,kalau korang nak tahu dan tengok dengan lebih lanjut




Dyra harap korang suka skin nee,ape-ape comment kay :)

Tutorial - Highlight ada shadow

Tumblr

Okayy,mula mula :

- Dashboard > Design > Edit HTML > Ctrl + F,then korang copy and paste code dekat bawah ni dekat box kecil yang terkeluar waktu korang tekan Ctrl + F tadi

a:link {
Dah jumpa,lepas tu copy code dibawah dan paste sebelum code a:link { tadi ye. 


:-moz-selection {
background:#FFFFFF;
color:#000000;
text-shadow: 2px 2px 3px #81BEF7;
}

::selection {
background:#FFFFFF;
color:#000000;
text-shadow: 2px 2px 3px #81BEF7;
}
Yang Dyra bold kan tu,warna shadow,korang boleh pergi dekat sini untuk dapatkan code warna.. Harap tutorial nee berjaya untuk korang :)

Freebies - Welcome Note *classic template

Harini Dyra nak bagi freebies sebab Dyra dah lama tak bagi freebies..
Emm,nah :)

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr2.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr7.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr6.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr5.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr4.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr3.png

http://i1205.photobucket.com/albums/bb427/DyraNadhirah/dyraheadr-2.png

Okayy,so macam biasa kalau dah amik,bagitau dekat shoutmix Dyra kay :)))

Tutorial - Welcome Note *classic template/blogskin template

don't stop believing ! ♥

Hey all,I'm back with a tutorial..Harini Dyra nak ajar macam mana nak buat tutorial Welcome Note..Contohnya kalau korang bukak blog orang,nanti bila korang klik dia bukak blog tuh..
Kayy,jom kita start :)

- Dashboard > Template.
        Ctrl+F, cari </style> 
- Dah jumpa,pastu korang copy code kat bawah ni and paste dekat </style> tadi..

<script language="javascript" type="text/javascript">
/* toggle() checks to see if the images has already been faded
or not and sends the appropriate variables to opacity(); */
function toggle(el,milli) {
// Get the opacity style parameter from the image
var currOpacity = document.getElementById(el).style.opacity;
if(currOpacity != 0) { // if not faded
fade(el, milli, 100, 0);
} else { // else the images is already faded
fade(el, milli, 0, 100);
}
}
/* changeOpacity() uses three different opacity settings to
achieve a cross-browser opacity changing function. This
function can also be used to directly change the opacity
of an element. */
function changeOpacity(el,opacity) {
var image = document.getElementById(el);
// For Mozilla
image.style.MozOpacity = (opacity / 100);
// For IE
image.style.filter = "alpha(opacity=" + opacity + ")";
// For others
image.style.opacity = (opacity / 100);
}
/* fade() will fade the image in or out based on the starting
and ending opacity settings. The speed of the fade is
determined by the variable milli (total time of the fade
in milliseconds)*/
function fade(el,milli,start,end) {
var fadeTime = Math.round(milli/100);
var i = 0; // Fade Timer
// Fade in
if(start < end) {
for(j = start; j <= end; j++) {
// define the expression to be called in setTimeout()
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
// setTimeout will call 'expr' after 'timeout' milliseconds
setTimeout(expr,timeout);
i++;
}
}
// Fade out
else if(start > end) {
for(j = start; j >= end; j--) {
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
setTimeout(expr,timeout);
i++;
}
}
}
</script>
<div class="hallo" onClick="javascript:toggle('wise', 3000); this.style.display='none'; document.getElementById('june').style.display=''">
<img src="URL WELCOME NOTE"
style="opacity:0.4;filter:alpha(opacity=40)"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/>
</div>

<div id="wise" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;">
<div id="june" style="display : none;">
Yang saya bold kan perkataan " URL WELCOME NOTE " korang gantikan dengan korang punya URL kayy :) have a good try..Kalau tak berjaya bagitau dekat shoutmix saya..Kalau berjaya,yeay :))

Day 4 - A photo that makes you happy

Actually,the word that's on my hand is "otak sama" of I translate it,it will be " same brain "..
The reason why I put this picture because there's something behind this picture..I can't explain to you because the story is loongg.
So,see you next time kayh,bye-bye :)


Maybe I gonna say that everyday I MISS MY FRIENDS <3

Day 3 - A photo of someone that you loves..

Alamakk,takkan nak letak gambar dia pulak,mcm mne ni..Let me think first..
I think I wanna put my family photo,okayy takk ?


Mmg mantapp..Gambar ni waktu Hari Raya tahun ni..Cun takk,cewahh..Main-main je..

Aku tak habis-habis drpd tadi ckp ayat "Cun takk ?" Tah pape doehh..

Older Post