Send button on Contact Form not hovering - Form not displaying well on mobile devices

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

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

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Hi,​

    I created a new form which I am very happy with located at: www.stephanbrisard.com/contact-stephanbrisard

    I used the following custom CSS to style my button:​
    }
    .submit_button
    {
    background-color:#709d05;

    color:white;
    }​
    I would like the green background color of the button to hover when mousing over. What's the CSS querry I need to add to get this done?​

    Thanks​
     
  2. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Also the form and sorry I forgot to mention earlier but is not showing well on mobile devices - especially the captcha and the message free field
     
  3. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    The CSS is also causing my button to disappear, maybe you have a better code all together
     
  4. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Problem button disappearing has been fix by adding the following to standard style.css: #submit_10 {background-color:red; color:white; }
    Hovering is still not working and mobile is not rendering well
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .submit_button:hover {
    background: red;
    }
     
    @media only screen and (max-width: 480px){
    .input_custom_style {
    width: 70%!important;
    }
    #xyz_cfm_1_1 a img {
    width: 14%;
    }
    }
     
  6. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    wonderful, it works perfect ;-) thanks so much for the outstanding service.
     
Thread Status:
Not open for further replies.

Share This Page