Submit Button for Lead Capture

Discussion in 'Infoway WordPress Theme' started by cjackson, Jan 29, 2014.

  1. cjackson

    cjackson New Member

    Joined:
    May 8, 2012
    Messages:
    24
    Likes Received:
    0
    I get that I can change the submit button if I update the image file for this, but how can I easily change this so that I can update the text and change the background color instead of replacing the button image?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
     .signupForm .signinForm input[type="submit"]{
    background:red;
    border-radius:4px;
    }
    .signupForm .signinForm input[type="submit"]:hover{
    background:red;
    opacity:.8;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  3. jjelinek

    jjelinek New Member

    Joined:
    Feb 1, 2014
    Messages:
    13
    Likes Received:
    1
    Thanks for this. How can I change the text that says "Send Your Message" on the submit button?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    For this go to the
    Theme directory > functions > infoway_front.php
    And change it from there.

    [​IMG]


    This will fulfill your requirement.
     
  5. jjelinek

    jjelinek New Member

    Joined:
    Feb 1, 2014
    Messages:
    13
    Likes Received:
    1
    Thanks, I figured it out by grepping for "Send Your Message" recursively and found out where to change it. I appreciate your help though!
     
  6. cjackson

    cjackson New Member

    Joined:
    May 8, 2012
    Messages:
    24
    Likes Received:
    0
    All very helpful, but this did not fix the form format on the secondary pages where the form appears in a widget - how can I update that - form both the text and the background color?
     
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .signupForm .heading {
    background: black;
    color: red;
    }
    .signupForm {
    background: red;
    } 
    In place "black" and "red" you can put your color or color code.
     

Share This Page