Terbaru

6/recent/ticker-posts

Cara Mengganti Warna Background dengan Gambar Pada Template Prestashop Bootstrap


Ingin mengganti warna background pada template Prestashop Bootstrap dengan gambar?
Langkah pertama adalah mencari file global.css yang terletak di themes/default-bootstrap/css/global.css
Kemudian cari baris berikut

.columns-container
{
  background: white; }


Untuk mempercepat pencarian tekan tombol Ctrl+F

ubah menjadi:

.columns-container {
  background:url(image url);
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: cover;  }



yang dicetak merah isikan alamat gambar
contoh:
 .columns-container {
  background:url(http://widewallpapers.net/mod/backgrounds/1920x1200/background-wide-wallpaper-1920x1200-016.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: cover;  }

Posting Komentar

0 Komentar