byigit adlı üyeden alıntı: mesajı görüntüle
css dosyanızda .postsinc aratın. margin-left 1.33 olanını düşürdükçe boşluk azalacak. yukarıda bahsettiğim width ayarını hiç bozmadan (24% kalsın) 1.33'ü 1 yapın. yukarıda yazdığım 0 olan da dahil.

css dosyanızda yapacağınız 2 değişiklik şunlar olacak: iyice test ettikten sonra .rightbar .rightbarmid .postback .postsinc:nth-child(4n) {} css'sini komple sil. sadece ".rightbar .rightbarmid .postback .postsinc " kalsın.

.rightbar .rightbarmid .postback .postsinc:nth-child(4n) {
  1. background: white;
  2. width: 24%;
  3. display: inline-block;
  4. border-radius: 6px;
  5. height: 350px;
  6. margin-bottom: 15px;
  7. position: relative;
  8. margin-right: 0%; ==> 1%;
}

.rightbar .rightbarmid .postback .postsinc {
  1. background: white;
  2. width: 24%;
  3. display: inline-block;
  4. border-radius: 6px;
  5. height: 350px;
  6. margin-bottom: 15px;
  7. position: relative;
  8. margin-right: 1.33%; ==> 1%
}
tşk ederım hallettım.