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.cssKemudian cari baris berikut
.columns-container
{
background: white; }Untuk mempercepat pencarian tekan tombol
Ctrl+Fubah menjadi:
.columns-container {
background:url(image url);
background-repeat: repeat;
background-attachment: fixed;
background-size: cover; }
yang dicetak merah isikan alamat gambarcontoh:
.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; }
0 Komentar