• 17-07-2013, 01:12:04
    #1
    Üyeliği durduruldu
    Merhaba yakın zamanda mynet değişti ve haberlerin içinde resmin üzerine facebook ve twiteer beğen yapılmış bunu nasıl yapabiliriz yardımcı olabilir misiniz?
  • 17-07-2013, 08:40:00
    #2
    Bunu css ile yapabilirsin php ile alakası yok.

    Örnek css kodu.
    .resim {
    	width:500px;
    	height:300px;
    	background-color:#000;
    	position:relative;
    	overflow:hidden;
    }
    .facebook {
    	width:90px;
    	height:10px;
    	background-color:#fff;
    	position:absolute;
    	left:5px;
    	top:5px;
    }
    .twitter {
    	width:90px;
    	height:10px;
    	background-color:#fff;
    	position:absolute;
    	left:100px;
    	top:5px;
    }
    .yorum {
    	width:90px;
    	height:10px;
    	background-color:#fff;
    	position:absolute;
    	right:5px;
    	top:5px;
    }
    örnek html kodu

    <div class="resim">
        <div class="facebook"></div>
        <div class="twitter"></div>
        <div class="yorum"></div>
    </div>