• 27-11-2017, 13:00:38
    #1
    Gold üye
    Merhaba arkadaşlar,

    Bu kod ile sitenin en üstünde yapışıyor ama ben bunu alta yapışmasını istiyorum. Nasıl yapabilirim?

    <style>
                .header,
                body{padding-top: 44px;}
                .user_sms_check_wrap *{margin: 0; padding: 0;}
                .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; top: 0; left: 0; z-index: 999}
                .user_sms_check_wrap p{line-height: 44px; color: #fff}
            </style>
            <div class="user_sms_check_wrap">
                <form>
    <center>
        
        <input required=""  placeholder="Adınız Soyadınız" style="height: 100%; width: 30%;"  type="text" name="text">     <input required="" placeholder="Telefon Numaranız" style="height: 100%; width: 30%;" type="phone" name="phone">     <input  value="Beni Arayın" type="submit" name="submit">
    </center>
    </form>
  • 27-11-2017, 13:07:52
    #2
    .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; top: 0; left: 0; z-index: 999}

    top: 0;
    yerine
    bottom: 0; koyun.
  • 27-11-2017, 13:08:40
    #3
    .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; top: 0; left: 0; z-index: 999}
    Buradaki top:0; değerini bottom:0; olarak değiştirin
  • 27-11-2017, 13:10:22
    #4
    Üyeliği durduruldu
    <style>
                .header,
                body{padding-top: 44px;}
                .user_sms_check_wrap *{margin: 0; padding: 0;}
                .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; bottom:0; left: 0; z-index: 999}
                .user_sms_check_wrap p{line-height: 44px; color: #fff}
            </style>
            <div class="user_sms_check_wrap">
                <form>
    <center>
         
        <input required=""  placeholder="Adınız Soyadınız" style="height: 100%; width: 30%;"  type="text" name="text">     <input required="" placeholder="Telefon Numaranız" style="height: 100%; width: 30%;" type="phone" name="phone">     <input  value="Beni Arayın" type="submit" name="submit">
    </center>
    </form>
    bu şekilde yaparsanız işlem tamam olacaktır.
  • 27-11-2017, 13:12:30
    #5
    Gold üye
    akifaykan adlı üyeden alıntı: mesajı görüntüle
    .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; top: 0; left: 0; z-index: 999}

    top: 0;
    yerine
    bottom: 0; koyun.
    CihanAksoy adlı üyeden alıntı: mesajı görüntüle
    .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; top: 0; left: 0; z-index: 999}
    Buradaki top:0; değerini bottom:0; olarak değiştirin
    AfraSze adlı üyeden alıntı: mesajı görüntüle
    <style> .header, body{padding-top: 44px;} .user_sms_check_wrap *{margin: 0; padding: 0;} .user_sms_check_wrap{text-align: center; height: 33px; background: #c0272c; position: fixed; width: 100%; bottom:0; left: 0; z-index: 999} .user_sms_check_wrap p{line-height: 44px; color: #fff} </style> <div class="user_sms_check_wrap"> <form> <center> <input required="" placeholder="Adınız Soyadınız" style="height: 100%; width: 30%;" type="text" name="text"> <input required="" placeholder="Telefon Numaranız" style="height: 100%; width: 30%;" type="phone" name="phone"> <input value="Beni Arayın" type="submit" name="submit"> </center> </form>
    bu şekilde yaparsanız işlem tamam olacaktır.
    Çok teşekkür ederim arkadaşlar, sağ olun.