Pages

Wednesday, October 16, 2013

Cara Merubah Background Images pada Bloger


1. Masuk ke dashboard > Template
2. Klik Edit HTML
3. Arahkan dan klik kursor di dalam area template editor, lalu tekan Ctrl+F
 "html body"

kode awal :


html body .content-outer {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}


Rubah kode cssnya dengan menambahkan   background:url(......)

Contoh  menjadi  :


html body .content-outer {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  background:url(https://lh3.googleusercontent.com/-MqFftDIOyVs/Ul49VP3EnbI/AAAAAAAAANs/HlXH-YRwVD8/w140-h140-p/wood4.jpg);
  background-position:top left;
  background-repeat: repeat-x repeat-y;
}

No comments:

Post a Comment