Hakkalyakin Board

Full Version: MYBB de Stilinizdeki Tüm link ve Resimlere Hareket Vermek için
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MYBB de Stilinizdeki Tüm link ve Resimlere Hareket Vermek için

MyBB CSS İle Logonuza Yeni Bir Hava Katın
İlk Önce
Admin Kp + Şablon Ve Stil + Temanız + Yeni Css ekle .
önceliklte temanızın stil sayfasına yeni bir stil oluşturun adını
Code:
stylesheet.css


yapın içine bu altta verdiğim kodları atın olay bu kadar

Kod bu

Code:
a img {
    border: none;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    -moz-transition: -moz-transform 0.2s ease-in-out;
    -ms-transition: -ms-transform 0.2s ease-in-out;
    -o-transition: -o-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}
a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}