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://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLS1uJhjgWsOVrJSkJ_oCN3HMz4R3TvOlQfG-IS8BgIsX8sCKJ3boEX52Kh37-zfdNjcaeTXq8ocLSoEnf_wR4yvUEzV2ZQklQqtJNZaV-OTKzS-rG5RdmvjXyEUVIzwJ0094zdAKz0y2s/w140-h140-p/wood4.jpg);
  background-position:top left;
  background-repeat: repeat-x repeat-y;
}

No comments:

Post a Comment