Simbol comel-2

Penulis : Unknown Masa : 06:06 Comments : 2 Labels :
Assalamualaikum
hello/hi

aina jumpe simbol ni dekat BLOG cik nur farah 
banyak comel woo xD
sebelum tuh . korang follow twitter aina / cute / dan like page / sweet /
ikhlas tau -3 xD heheh . thanks yee

nah ambil laaa tuh pun kalau berkenan ...

Æ æ
{^◕‿◕^} (^^) ✖✗✘
✂✆✉✦✧ ♰♂♀☿❤❥ ❦❧
™®©♡♦ ♔♕♚♛★ ☄☾☽
☀☁☂☃ ☮۞۩ εїз¢
☚☛☜☝☞☟✍
☢☣☠☮☯ ♠♤♣♧♥ ❀✿ ψ☪☭
♩♫℘ℑ ℜℵ♏ηα ʊϟღツ回 ™ ©®¿¡½
¼¾⅛⅜⅝⅞℅
❝❞ ◠◡╭╮╯╰ ★☆¤
★☆♀◆◇↑↓→ ←↘↙♀ ♂┇┅﹉﹊
﹍﹎╭╮╰╯ *^_^* ^*^ ^-^
^_^ ^^∵∴‖ ︱︳︴﹏
﹋﹌♂♀ ♥♡☜☞☎ ☏⊙◎☺☻
▧▨ ♨◐◑↔ ▪▫☼♦▀ ▄█▌ ░▒▬♦
☼♠♣ ▤▥▦▩ ◘◙ ♬♪♩♭♪ の☆→あ
◕‿◕。✎✟۩ ۩.. ..۩۩ ۩۞۩
❈➹ ~.~ -。☀☂☁ 【】┱┲ ✚✪✣ ✤✥
✦❉ ❥❦❧❃ ❂❁❀✄ ☣☢☠☭♈
✔✕ ㊚㊛ *.: *゚・ ¤㊣★☆
♀◆◇回
→←↘ ♀♂┇┅ ﹊﹍﹎ ╭╮╰╯ *^_^*
^*^ ^-^ ^_^ ^^ ∴‖ ︱︳ ︴﹏﹋﹌
♂♀♥♡☜ ☞☎☏⊙ ☺☻
▧▨♨◐◑ ▪▫ ☼♦
▐░▒▬ ◊◦ ♠♣▣▤▥ ▦▩ぃ◘◙
♫♬♪ ♩♭♪の☆ あ£ ◕‿◕。
۩۩.. ..۩۩๑๑۩۞ ۩
✲❈ ~.~◕‿- ☀☂☁【】
┱┲❣✚ ✪✣✤✥ ✦❉❥❦
❧❃❂❁❀ ☪☣☢☠ ☭♈
✔✕✖ *.:。✿*゚・»«¶
©† εïзღ♣ •± °•.•ஐஇ
◊©¤ ▲↔™®ε їз
☆★ ▽△▲ ∵∴∷ #♂♀♥♠♣
♧♤♧ ♡♬♪ ♭♫♪ ↕↘••● ¤╬﹌
▽☜♥☞ ✞♥♕☯☭☠☃
▱◆








´ ‗ ‘ ’ ‚ ‛ “ ” „ † ‡ •

      ′ ″ ‹ ›

∙ √














thank you for reading

Button fly up !!

Penulis : Unknown Masa : 05:59 Comments : 0 Labels :
design - javascript

korang paste kan code di bawah ni kat ruangan html/java tu



<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script><script type="text/javascript" >/***********************************************
* Scroll To Top Control script- &#169; Dynamic Drive DHTML code library(www.dynamicdrive.com)* Modified byLyssaFaizureen***********************************************/var scrolltotop={
setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
controlHTML: '<img src="URL IMAGE FLY UP" />',
controlattrs: {offsetx:5, offsety:5},
anchorkeyword: '#top',
state: {isvisible:false, shouldvisible:false},
scrollup:function(){
if (!this.cssfixedsupport)
this.$control.css({opacity:0})
var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
if (typeof dest=="string" && jQuery('#'+dest).length==1)
dest=jQuery('#'+dest).offset().top
else
dest=0
this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
},
keepfixed:function(){
var $window=jQuery(window)
var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
this.$control.css({left:controlx+'px', top:controly+'px'})
},
togglecontrol:function(){
var scrolltop=jQuery(window).scrollTop()
if (!this.cssfixedsupport)
this.keepfixed()
this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
if (this.state.shouldvisible && !this.state.isvisible){
this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
this.state.isvisible=true
}
else if (this.state.shouldvisible==false && this.state.isvisible){
this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
this.state.isvisible=false
}
},
init:function(){
jQuery(document).ready(function($){
var mainobj=scrolltotop
var iebrws=document.all
mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest
mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
.css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
.attr({title:'Scroll Back to Top'})
.click(function(){mainobj.scrollup(); return false})
.appendTo('body')
if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='')
mainobj.$control.css({width:mainobj.$control.width()})
mainobj.togglecontrol()
$('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
mainobj.scrollup()
return false
})
$(window).bind('scroll resize', function(e){
mainobj.togglecontrol()
})
})
}
}
scrolltotop.init()
</script>


hijau BOLD tuh : url image button fly up korang tuh .

senang je kan ... ?
thank you for reading

navigation part 3

Penulis : Unknown Masa : 00:39 Comments : 0 Labels :
:O terpikat tak ? hehehehe 

bgy aina lawa koddd xD bangge . oke malas nk ckp byk , let's go !!! kita doing yee xD 
hahaha , speaking jup :3

1.design - add gadget - HTML/javascript

copy kode ni then paste kat ruagan HTML/java tuh 
<br/>
<span style="background-color: #d8d8d8; border-radius: 5px 5px 5px 5px; padding: 3px 6px;"><a href="LINK">Code Color</a></span>
<span style="background-color: #d8d8d8; border-radius: 5px 5px 5px 5px; padding: 3px 6px;"><a href="LINK/">Mr. Google</a></span>
<span style="background-color: #d8d8d8; border-radius: 5px 5px 5px 5px; padding: 3px 6px;"><a href="LINK">Facebook</a></span>
<br />

NOTA KEPALA LUTUT :
BOLD : code warna
HIJAU : link
PURPLE: tajuk





thank you for reading

cara menukar link blog

Penulis : Unknown Masa : 00:31 Comments : 0 Labels :
korang nak tuka link blog korang ? 

1. setting - Publishing

tegok kat bawah ni :-


1. click setting 
2. click publishing
3. link blog korang yang korang nk tukar tuh , kalau boleh unik sikit la 
nama korang nk letak tuh xD 
3. masukkan recapctha code ( aku rse aku eja salah -,- )
5. save ! 
done !


thank you for reading

Undeline background

Penulis : Unknown Masa : 00:23 Comments : 0 Labels :
CONTOH :

saya suka makan KFC
lawa kan ? terpikat tak ? kalau terpikat ikut step jom !! 
 1. design - editHTML - Tick
ctrl + f . find kod ni :
u {
2. sudah jumpa ? copy code ni dulu

text-decoration:none;
background: #a4a4a4;
-webkit-transition-duration: 2s;
color: #FFFFFF;
-moz-border-radius: 3px;
filter:alpha(opacity=100);
-moz-opacity:1.0;
opacity:1.0;
border-radius: 5px;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;

3. paste kan dekat SEBELAH u { tuh

Bold tu code warna
tak tahu nk cari kod warna ?
tengok kat sidebar aina yang atas sekali tuh (le moustache) namapk  ? click !

preview kalau jadi save !

thank you for reading

BOLD text shadow

Penulis : Unknown Masa : 09:59 Comments : 1 Labels :
nampak tak ade shadow kat tepi-2 die tuh ?

oke ikut step ye anak-2 xD

1. design - editHTML - Tick

ctrl+f cari kod :
/* Header
2. oke . copy kode ni . then paste kan di atas code /* Header tu oke ?
b {
text-decoration:none;
text-shadow: 0 0 0.2em #faafbe, 0 0 0.2em #faafbe;
padding: 0px;
}

yang BOLD tu kode warna shadow tu 
then save je la :D

thank you for reading

Tulisan Berwarna Bagi Ayat Di Bawah Setiap Post

Penulis : Unknown Masa : 09:50 Comments : 2 Labels :



okeh . jum kita start ! let's go !

1. design - editHTML - Tick 
ctrl+f seacrh :
<data:post.body/>
2. dah jumpa ? copy code ni pulak .
<hr/><center><span style='color: #000000;'><b>AYAT KORANG</b></span></center><hr/> 
3.paste kan DIBAWAH code <data:post.body/> ye  adik-2 / kaka-2 / abg-2 :D 


warna merah tu ialah warna tulisan tu . 
purple tu AYAT KORANG oke

save ! dan lihat hasilnya .

thank you for reading

Sidaber border part2

Penulis : Unknown Masa : 06:54 Comments : 4 Labels :
yang ni yang colorful punya ! banyak cantik woo :O

okeh . jom ikut tuto rial ni 

1.ctrl+f searh code ni :
]]></b:skin>

2. dah jumpa , copy code ni then paste di ATAS code tadi tu
.sidebar .widget {
background: #FFF;
border-top: 4px solid #F5A9BC;
border-bottom: 4px solid #A9BCF5;
border-left: 4px solid #A9BCF5;
border-right: 4px solid #F5A9BC;
  margin:5px 5px 1.0em;
  padding:0px 5px 1.0em;
border-radius: 10px;
 }

yang BOLD tu korang ubah ikut sesuaian :)

credit by NABILA MEDAN 

thank you for reading

Freebies header . my blog areweasome .

Penulis : Unknown Masa : 05:46 Comments : 0 Labels :
Harini aina buat header untuk korang . tak tau la bgy korang lawa ke tak sbb aina buat simple-2 je :D


http://i1215.photobucket.com/albums/cc513/misseyna1/biru.png

http://i1215.photobucket.com/albums/cc513/misseyna1/kelabu.png

http://i1215.photobucket.com/albums/cc513/misseyna1/pink.png

suka ? kalau suka ambil la ye , jgn malu-2 :3
thank you for reading

My Blog Is Areweasome

Penulis : Unknown Masa : 07:35 Comments : 0 Labels :

Yeahh .. My blog is  areweasome ! nape jelouse ? hehe :3 jokes je jangan ambil hati :O siapa tak mengaku blog die areweasome kan ? okeh , aina nak ckp pasal blog . nak tau kenapa aina buat blog tema warna kelabu asap ? sbb now aina suka simple-2 , bagy aina simple cantik sangat , tak percaya ?
nnty korang da besar korang tau la . sbb waktu kita kecik , kita mmg suka warna PINK . jadi bila lama-2 kita asyik PINK PINK PINK mesty rasa muak kan ? jadi , sbb tu la , Blog aina warna kelabu xD tpy aina suka jugak la warna PINK sbb die cute sgt . lagy satu warna PINK paling senang nk cari doodle ke background ke . betul tak ? hehehe . okeh -2 aina tahu aina cerita tungang langgang kan ? oke-2 kalau tak faham buat-2 fhm je . boi boi


thank you for reading

Pisahkan main wrapper dan sidebar wrapper

Penulis : Unknown Masa : 17:19 Comments : 2 Labels :

Assalamualaikum
lawa kan ? nak try buat jom aina nk ajarkan 

1. design - editHTML - Tick
2. find code ni :  .post {

3. dekat bawah kod .post { kan ade code . korang delete then korang gantikan dengan code ni 
 margin:0 0 1.5em;padding:10px;font-size: 95%;background:#ffffff;border: 2px solid #999999;border-radius:5px;">line-height:1.9em;
merah : ketebalan border
biru : double/solid/dotted or dashed
ungu : code warna SINI

tadi tu untuk post , sekarang ni untuk sidebar pulak ...

1 . find code : .sidebar .widget

2. baawah kod .sidebar .widget tu ade code kan ? korang delete then gantikan dengan code ni 
margin:0 0 1.5em;padding:10px;font-size: 95%;background:#ffffff;border: 2px solid #999999;border-radius:5px;">line-height:1.9em;

6. preview dulu , kalau takde error korang boleh save , 
eh ! tak siapa lagy , sekarang ni kita nk transparent kan background die tuh . baru cantik . 

korang ikut picture kat bawah ni ;


dah siap ,
APPLY TO BLOG 

okeh . selesai 



thank you for reading