Hoşgeldin Ziyaretçi
Mesaj atabilmek için forumumuza kayıt olmalısınız.

Kullanıcı Adı
  

Şifre
  





Forumlarda Ara

(Gelişmiş Arama)

Forum İstatistikleri
» Üye Sayısı: 13
» En Son Üyemiz: butracovietnam
» Konu Sayısı: 24
» Mesaj Sayısı: 28

Tam İstatistik

Çevrimiçi Kullanıcılar
Şu anda 7 çevrimiçi kullanıcı var.
» 0 üye | 6 Misafir
Google

En Son Konular
Imza ve metinleri düzeltm...
Forum: SourceCode Cloud
Son Mesaj: lapuertamedien
08-06-2021, 10:19 AM
» Cevaplar: 0
» Gösterim: 804
Logo Degistirme
Forum: SourceCode Cloud
Son Mesaj: lapuertamedien
08-06-2021, 10:16 AM
» Cevaplar: 0
» Gösterim: 766

 
  Imza ve metinleri düzeltme
Gönderen: lapuertamedien - 08-06-2021, 10:19 AM - Forum: SourceCode Cloud - Cevap Yok

body-public footer .info {

Kod:
color: #777;
text-align: center;
margin: 0 auto;
padding: 20px 0;

}
body-public footer .info a {
Kod:
color: #777;
font-weight: 600;
padding: 13px;


That's my code of the styles.css of my template and the footer don't work:
Alıntı: [size=1][font=Arial, sans-serif]body-login {
[/font][/size]

Kod:
text-align: center;
background-image: url('../img/background.jpg?v=1');
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;

}
[size=1][font=Arial, sans-serif]body-public footer .info {

[/font][/size]

Kod:
color: #000000;
text-align: center;
margin: 0 auto;
padding: 20px 0;

}
[size=1][font=Arial, sans-serif]body-public footer .info a {

[/font][/size]

Kod:
color: #000000;
font-weight: 600;
padding: 13px;
margin: -13px;

}


Private/defult.PHP dosyasinda yer aliyor

Bu öğeyi yazdır

  Logo Degistirme
Gönderen: lapuertamedien - 08-06-2021, 10:16 AM - Forum: SourceCode Cloud - Cevap Yok


  1. [size=1]Put the new background image in 
    [/size]

    Kod:
    core/img/background.jpg
    [size=1].[/size]
  2. [size=1]Change the owner and group permissions of the file to your web server user and group.[/size]
  3. [size=1]Update 
    [/size]

    Kod:
    background-image
    [size=1] in 
    [/size]

    Kod:
    core/css/styles.css
    [size=1].[/size]

Kod:
#body-login {
     background-image: url("../img/background.jpg"); /* path to image */
     background-position: 50% 50%; /* ensure optimal scalability */
     background-repeat: no-repeat; /* prevent tiled background */
     background-size: cover; /* ensure screen coverage */
     text-align: center; /* Center Entitlement text, copyright */
     background-color: #000000 !important; /* Fallback for old browsers */
}

[size=1]If your image size is 1920px x 1680px, you don’t need the lines below the path. However, they ensure optimal positioning and scaling.[/size]

Bu öğeyi yazdır