• 01-03-2025, 11:14:51
    #1
    Merhaba wordpress sitem var ve sitenin sağ alt köşesinde sabit bir görsel eklemek istiyorum. Nasıl hangi kodlarla yapabilirim. Css denedim eklendi ama sitenin diğer ürünlerinin arkasında kalıyor nasıl öne çekebilirim?
  • Kabul Edilen Cevap
    • Merhabalar;
      Öncelikle header.php veya index.php ye aşağıdaki kodu ekleyin.

      <div id="sagkose"><a href=""><img src="sagkose.png" alt="" border="0" /></a></div>
      Sonra css dosyasına "style.css" aşağıdaki kodu ekleyin;

      #sagkose
      {
      z-index:9999;
      position:fixed;
      _position:absolute;
      bottom:0px;
      right:0px;
      clip:rect(0 100 85 0);
      _top:expression(document.documentElement.scrollTop +document.documentElement.clientHeight-this.clientHeight);
      _left:expression(document.documentElement.scrollLe ft + document.documentElement.clientWidth - offsetWidth);
      }
      Saygılar
  • 01-03-2025, 11:38:25
    #2
    Bu cevap, konu sahibi tarafından kabul edilebilir bir cevap olarak işaretlendi.
    Merhabalar;
    Öncelikle header.php veya index.php ye aşağıdaki kodu ekleyin.

    <div id="sagkose"><a href=""><img src="sagkose.png" alt="" border="0" /></a></div>
    Sonra css dosyasına "style.css" aşağıdaki kodu ekleyin;

    #sagkose
    {
    z-index:9999;
    position:fixed;
    _position:absolute;
    bottom:0px;
    right:0px;
    clip:rect(0 100 85 0);
    _top:expression(document.documentElement.scrollTop +document.documentElement.clientHeight-this.clientHeight);
    _left:expression(document.documentElement.scrollLe ft + document.documentElement.clientWidth - offsetWidth);
    }
    Saygılar
  • 01-03-2025, 12:32:40
    #3
    Teşekkürler, problemi çözdü anlatımınız.