PHP Hemen Ara butonu nasıl yapabilirim ?
6
●182
- 28-12-2025, 16:39:33.call-button {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 9999;
width: 52px;
height: 52px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: #0d6efd;
color: #fff;
font-size: 22px;
text-decoration: none;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.call-button:hover {
transform: scale(1.08);
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
color: #fff;
}
@media (max-width: 576px) {
.call-button {
width: 46px;
height: 46px;
font-size: 20px;
right: 15px;
bottom: 15px;
}
}
<a href="tel:+9055555555" class="call-button" title="Hemen Ara">
<i class="fas fa-phone"></i>
</a> - 28-12-2025, 18:20:17Burada haziri var https://www.r10.net/bilgi-arsivi/315...hazir-kod.html
