Showing posts with label TIPS DAN TRIK EDIT BLOG. Show all posts
Showing posts with label TIPS DAN TRIK EDIT BLOG. Show all posts

Cara letak scroll bar pada label HTML

Tuesday, March 6, 2012





kali ini pada sore ini uphik ajjha akan share cara membuat scroll bar pada label simple ko' caranya :)
langsung aja ya :)
1.Masuk rancangan
2.Edit HTML
3.Centang Expand Template Widget
4.Lalu cari kode di bawah ini dengan cara klik f3





<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>





Kalau Sudah ketemu code di atas
Ganti dengan coda yang ada di bawah ini
||
||




<div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;' style='height:300px;overflow:auto;'>





Kamu boleh ganti 300 dengan semaumu oke

Sekian postingan saya terimakasih sudah visit blog saya
ingat bila copas sertakan sumebrnya :)

Cara Membuat Scroll Box

Friday, March 2, 2012


Scroll Box Border Solid :
<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px solid #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>
 Scroll Box Border Double :
<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px double #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>
Scroll Box Border Inset :
<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px inset #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>
Scroll Box Border Outset :
<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px outset #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>

Scroll Box Border Dotted dan Dashed :


Dotted »

<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px dotted #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>
Dashed »
<div style="overflow:auto; width:100%px; height:200px; padding:10px; border:1px dashed #DA2400;">

 Isi Text Disini «» Uphik Ajjha Blogs

</div>

tolong sertakan sumber bila copas :)

sumber

Create Windows 7 start menu using CSS3 only

Saturday, February 18, 2012

I am fascinated with how much you can do with so little using CSS3. Many user interface elements that require images in order to have appropriate visual appearance now can be styled only with CSS3. In order to prove that I assigned myself a task to create Windows 7 start menu only with CSS3 (and some icons).


If we decompose the menu we'll get one div, two unordered lists with a couple of links each and a few icons. Let's see how each one of those is styled.
Check out the demo

Container

The container named startmenu holds two unordered lists that act as menus. It has linear gradient with three color stops: light blue at the top, dark blue in the middle, and another shade of light blue at the bottom. Transparency is achieved using rgba() which has four parameters. The first three represent red, green and blue color values and the last one is opacity. Two borders are created with border and box-shadow properties.
#startmenu { border:solid 1px #102a3e; overflow:visible; display:inline-block; margin:60px 0 0 20px;
-moz-border-radius:5px;-webkit-border-radius:5px; position:relative;
box-shadow: inset 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
background-color:#619bb9;
background: -moz-linear-gradient(top, rgba(50, 123, 165, 0.75), rgba(46, 75, 90, 0.75) 50%, rgba(92, 176, 220, 0.75));
background: -webkit-gradient(linear, center top, center bottom, from(#327aa4),color-stop(45%, #2e4b5a), to(#5cb0dc)); }

Programs menu

This unordered list has white background and two borders created with border and box-shadow properties. Its links, which contain icons and program names, uses gradients and box shadows in hover state.
#programs, #links {float:left; display:block; padding:0; list-style:none;}
#programs { background:#fff; border:solid 1px #365167; margin:7px 0 7px 7px;
box-shadow: 0 0 1px #fff; -moz-box-shadow: 0 0 1px #fff; -webkit-box-shadow: 0 0 1px #fff;
-moz-border-radius:3px;-webkit-border-radius:3px;}
#programs a { border:solid 1px transparent; display:block; padding:3px; margin:3px;
color:#4b4b4b; text-decoration:none; min-width:220px;}
#programs a:hover {border:solid 1px #7da2ce;
-moz-border-radius:3px; -webkit-border-radius:3px;
box-shadow: inset 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
background-color:#cfe3fd;
background: -moz-linear-gradient(top, #dcebfd, #c2dcfd);
background: -webkit-gradient(linear, center top, center bottom, from(#dcebfd), to(#c2dcfd));}
#programs a img {border:0; vertical-align:middle; margin:0 5px 0 0;}

Links menu

As in the previous case, links menu is quite simple. But the interesting part comes in hover state. Each link has horizontal gradient with three stops: dark blue on the left and right side, and a bit lighter blue in the middle. Now, unlike programs menu links, here, every links has inner <span> element which contains text. This span element has one more gradient - vertical linear gradient. It is transparent in the upper half and the lower part goes from very dark blue to almost transparent light blue. The combination of two transparent gradients gives exactly the same look as buttons in Windows 7 link menu.
#links {margin:7px; margin-top:-30px;}
#links li.icon {text-align:center;}
#links a {border:solid 1px transparent; display:block; margin:5px 0; position:relative;
color:#fff; text-decoration:none; min-width:120px;}
#links a:hover {border:solid 1px #000;
-moz-border-radius:3px; -webkit-border-radius:3px;
box-shadow: 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
background-color:#658da0;
background: -moz-linear-gradient(center left, rgba(81,115,132,0.55), rgba(121,163,184,0.55) 50%, rgba(81,115,132,0.55));
background: -webkit-gradient(linear, 0% 100%, 100% 100%, from(#517384), color-stop(50%, #79a3b8), to(#517384));
}
#links a span { padding:5px; display:block; }
#links a:hover span { background: -moz-linear-gradient(center top, transparent, transparent 49%, rgba(2,37,58,0.5) 50%, rgba(63,111,135,0.5));
background: -webkit-gradient(linear, center top, center bottom, from(transparent), color-stop(49%, transparent),
color-stop(50%, rgba(2,37,58,0.5)), to(rgba(63,111,135,0.5))); }
Here is the preview, but I suggest you to check out the demo. You can play with backgrounds and see how transparency works.

The code works fine in Firefox 3.6+, Safari and Chrome. It degrades gracefully in Opera and IE. I guess I could optimize it a bit so if you have any suggestions please let me know.

Pasang Translator di Blog/Website (versi 1)

Friday, February 17, 2012



Kadang ketika kita buka website or blog seseorang kita menemukan widget translator, nah macam translatornya juga banyak sekali.
Rasanya berkeinginan untuk pasang Translator untuk web/blog kita. Untuk anda yang memiliki blogger/wordpress anda bisa pasang widget Google Translator (saya juga pakai), kelebihannya banyak:
1. Hampir bermacam-macam bahasa bisa dimasukan
2. Simple install
3. Ukuran juga kecil karna menggunakan Drop Down
4. De el el hehe

So, bagaimana caranya, ini dia:
1. Go to Google Translate
2. Lansung ke tab Tools.
3. Pilih bahasa blog anda
4. Copy script ke blog anda, biasanya dipasang di sidebar

Well, silahkan lihat hasilnya...!!!
Moga manfaat...

Cara membuat link menjadi pelangi (banyak bintang nya)



Dalam postingan ini saya coba untuk membuat sebuah link yang kalau terkena mouse tulisan tersebut langsung kelap kelip kayak pelangi ,kalau kayak gini jadi tambah cantik deh blog atau web kita.
Terus gimana cara nya..?


  •  Masuk ke blogger dengan ID anda
  •  Pada dasbor anda, silahkan pilih Rancangan
  • Kemudian pilih Edit HTML
  • jangan lupa centang Expand Template Widget
  •  Setelah itu, silahkan anda cari kode seperti ini hover




a:visited {
  text-decoration:none;
  color: $(link.visited.color);
}

a:hover {
  text-decoration:underline;
  color: $(link.hover.color);

}

.content-outer {
  background: $(content.background);





  • Setelah ketemu, silahkan ganti kode yang berwarna merah dan  tebal   kode di bawah ini:




color: #00FFFF; text-transform: uppercase; font-weight: bolder;
font-size: 20px; background-image: url(http://i27.tinypic.com/2626vyh.jpg); 



NB : Sobat bisa memilih warna pelangi nya dengan kode warna lain nya yang di letakan di  tag color yang berwarna biru  kayak contoh di atas kode warna nya #00FFFF bisa anda ganti dengan kode -kode warna lain nya DISINI



Jika udah anda kode script di atas maka tampak hasil nya seperti di bawah ini :




a:visited {
  text-decoration:none;
  color: $(link.visited.color);
}

a:hover {
 
color: #00FFFF; text-transform: uppercase; font-weight: bolder;
font-size: 20px; background-image: url(http://i27.tinypic.com/2626vyh.jpg); 

}

.content-outer {
  background: $(content.background);




  •  Kemudian Simpan Template.
 NB : sebelum ada menyimpan hasil modifikasi kode tersebut di usahakan terlebih dahulu simpan dan download templete anda atau pratinjau terlebih  kalau sudah bener baru di simpan templete dahulu untuk menghindari error yang terjadi dalam html


Nah ,sekarang sobat lihat hasil nya..!!!!semoga bermamfaat

Postingan Blog Tampil di Facebook

Wednesday, February 8, 2012


Kali ini saya akan mencoba mengulas cara membuat postingan blog bisa tampil di facebok secara otomatis, kelebihannya lagi anda dapat membuat postingan blog lebih dari satu nama judul blog dan bisa tampil di faceboook secara bersamaan.                                  postingan blog anda akan bisa tampil di facebook pada dinding wall pribadi, dinding wall teman dan dinding group yang ada di facebook yang pernah anda buat sebelumnya.Anda dapat memilih account facebook anda yang sesuai dengan deskripsi blog yang anda miliki.Kelebihan Lain postingan anda otomatis punya kesempatan dibaca oleh pengguna facebook lain di seluruh dunia.

Cara Membuat Postingan Blog Tampil di Facebook

Ikuti Langkah-langahnya,
Klik app facebook Rss Graffiti
Seperti biasa setelahnya anda akan dibawa ke otorisasi aplikasi.
Klik Terima dan masuk Ke aplikasi Graffiti, selanjutnya anda tentukan pilihan postingan akan tampil dimana.
lihat sebelah kiri nama user yang berwarna Hijau ( dalam logo bulat hijau ) kemudian klik ' +add feed'  lalu masukkan url feed blog anda yang valid.

klik preview dibawahnya, bila url feed sudah benar postingan blog akan otomatis tampil di atasnya.
kemudian jangan lupa klik Save.

Read more: http://dicky-ajha.blogspot.com/2011/10/postingan-blog-tampil-di-facebook.html#ixzz1lneTX9ii
Get Paid To Promote, Get Paid To Popup, Get Paid Display Banner