Send Message Button Looks Different on Mobile Devices

Discussion in 'Infoway WordPress Theme' started by cagr1115, Mar 15, 2013.

Thread Status:
Not open for further replies.
  1. cagr1115

    cagr1115 Member

    Joined:
    Dec 14, 2012
    Messages:
    38
    Likes Received:
    0
    Hello! What CSS code do I need to add to make the Send Message button of the Lead Capture Form look uniform on a mobile device ? I customized the heading and the button of my form to a yellow color. It looks perfect when using a computer, but not when I'm using my iPhone or my iPad. See attached...thanks!
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Do let us know your website link.
     
  3. cagr1115

    cagr1115 Member

    Joined:
    Dec 14, 2012
    Messages:
    38
    Likes Received:
    0
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .signupForm .signinForm input[type="submit"]:hover {
    background: #db9704;
        width:auto;
        height:35px;
    }
     
    .signupForm .signinForm input[type="submit"]{
    background: #db9704;
    text-shadow: 0 1px 0 #CFCECE;
    border-radius: 5px;
    margin-top:5px;
        margin-bottom:0px;
        display:inline-block;
        font-family: 'Arvo', serif;
        font-size: 12px;
        text-decoration: none;
        padding:5px 5px 5px 8px;
        text-decoration: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border: solid #ed7a37 1px;
          width:auto;
        overflow:hidden;
          margin-bottom:20px;
          text-align:center;
          height:35px;
    }
     
  5. cagr1115

    cagr1115 Member

    Joined:
    Dec 14, 2012
    Messages:
    38
    Likes Received:
    0
    Thanks for the reply, but the button didn't look right on a computer monitor this time.
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello Cagr,
    Remove the width and height code given in the above reply by Nitesh, from the Custom CSS
    (Appearance > Theme Option > Styling Option > Custom CSS).
    for the reference see the image given below.
    [​IMG]
    and now, paste the code given below in the Custom CSS.

    Code:
    .signupForm .signinForm input[type="submit"] {
     
    padding-bottom: 0px ! important;
     
    }
    This will solve your issue.
     
  7. cagr1115

    cagr1115 Member

    Joined:
    Dec 14, 2012
    Messages:
    38
    Likes Received:
    0
    The button is still not looking uniform. It's okay, I'll just leave it as is. Thanks anyways for the support :)
     
Thread Status:
Not open for further replies.

Share This Page