MyBB Depo Forum
Çözünürlüğe göre kayan buton - Baskı Önizleme

+- MyBB Depo Forum (https://mybbdepo.com)
+-- Forum: MyBB 1.6 Depo (https://mybbdepo.com/mybb-1-6-depo-forumu)
+--- Forum: MyBB 1.6 Soru ve Sorunlarınız (https://mybbdepo.com/mybb-1-6-soru-ve-sorunlariniz-forumu)
+--- Konu Başlığı: Çözünürlüğe göre kayan buton (/cozunurluge-gore-kayan-buton-konusu.html)



Çözünürlüğe göre kayan buton - Sogansizwhopper - 17-01-2015

Arkadaşlar index.php'me buton ekleyip foruma yönlendiren link atadım fakat her tarayıcıda buton kayıyor ve farklı yerde görünüyor. Bunu sabitlemek için kodlarıma ne eklemem gerek? Aynı şekilde ekranı küçülttüğümde de aynı sorun oluşmakta.

CSS:

Kod:
body
{
min-height: 740px;
background-color: black;
background-image: url(.../images/arkaplan.png);
background-repeat : no-repeat;
background-size: cover;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

#button {
    position: fixed;
    transition: .5s ease;
    top: 530px;
    left: 750px;
    right: -420px;
    bottom: -191px;

}

#button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

index.php:
Kod:
<body>
    
    <li><a href="siteadresim"><img src=".../images/yazi.png" id = "button"></a></li>

</body>