1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | Global Settings Header Scripts của theme flastsome các bạn thử nhé Header Scripts <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" /> <div class="thanh-tien-trinh"> <div class="tientrinh"></div> </div> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> Footer Scripts <style> /* CSS cho phần contact */ .tuanoidayne-contact { position: fixed; bottom: 20px; left: 20px; z-index: 99999; } .tuanoidayne-contact a { display: block; border-radius: 50%; padding: 15px; color: white; text-align: center; font-size: 24px; font-weight: 500; text-decoration: none; margin-bottom: 10px; transition: background 0.3s, transform 0.3s; } .chat-zalo { background: #f58620; } .chat-face { background: #125c9e; } .hotline { background: #e82829 !important; } .tuanoidayne-contact a:hover { transform: scale(1.1); } .tuanoidayne-contact a i { font-size: 24px; transition: color 0.3s; } .chat-zalo:hover { background: #ffb74d; } .chat-face:hover { background: #87cefa; } .hotline:hover { background: #ff6f6f; } @media (max-width: 549px) { .tuanoidayne-contact { display: none; } } /* CSS cho phần footer */ #tuanoidayne-contact-footer-outer { position: fixed; width: 100%; z-index: 100 !important; bottom: 0; display: none; } #tuanoidayne-contact-footer { display: flex; justify-content: space-between; align-items: center; padding: 10px; background: #fff; border-top: 2px solid #e1e1e1; } #tuanoidayne-contact-footer > a { display: flex; flex-direction: column; align-items: center; text-align: center; color: #313131; font-size: 12px; text-decoration: none; } #tuanoidayne-contact-footer .fa { font-size: 24px; margin-bottom: 5px; } .tuanoidayne-contact-footer-btn-label { margin-top: 5px; } #tuanoidayne-contact-footer-btn-center { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; } #tuanoidayne-contact-footer-btn-center .tuanoidayne-contact-footer-btn-center-icon { width: 50px; height: 50px; background-image: linear-gradient(92.83deg, #f90000 0, #950099 100%); border-radius: 50%; box-shadow: rgb(0 0 0 / 15%) 0 -3px 10px 0; border: 2px solid #fff; text-align: center; animation: rotate 2s infinite linear; } .tuanoidayne-contact-footer-btn-center-icon i { font-size: 24px; color: white; line-height: 50px; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media only screen and (max-width: 850px) { #tuanoidayne-contact-footer-outer { display: block; } #tuanoidayne-contact-footer { justify-content: space-evenly; /* Căn đều các nút trên màn hình nhỏ */ } } </style> <div class="tuanoidayne-contact"> <a class="chat-zalo" href="http://zalo.me/0918992587"> <img src="/wp-content/uploads/2023/05/zalo-150x150-1.png" alt="Zalo" style="width: 24px; height: 24px;"> </a> <a class="chat-face" href="http://m.me/muathemedep"> <i class="fab fa-facebook-messenger"></i> </a> <a class="hotline" href="tel:0918992587"> <i class="fas fa-phone-alt"></i> </a> </div> <section id="tuanoidayne-contact-footer-outer"> <div id="tuanoidayne-contact-footer"> <a href="#" data-open="#main-menu" data-pos="left" data-bg="main-menu-overlay"> <i class="fas fa-bars"></i> <span class="tuanoidayne-contact-footer-btn-label">Menu</span> </a> <a href="/lien-he"> <i class="fas fa-envelope"></i> <span class="tuanoidayne-contact-footer-btn-label">Liên hệ</span> </a> <a id="tuanoidayne-contact-footer-btn-center" href="tel:0918992587"> <span class="tuanoidayne-contact-footer-btn-center-icon"> <i class="fas fa-phone-volume"></i> </span> </a> <a href="https://facebook.com/" target="_blank"> <i class="fab fa-facebook-f"></i> <span class="tuanoidayne-contact-footer-btn-label">Messenger</span> </a> <a href="https://t.me/your-telegram-link" target="_blank"> <i class="fab fa-telegram"></i> <span class="tuanoidayne-contact-footer-btn-label">Telegram</span> </a> </div> </section> |