How can change the contact page

Discussion in 'Blackriders WordPress Theme' started by maggiemae, Jan 19, 2015.

  1. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    I would like to change the contact page.

    1. can i remove the captcha field?
    2. can I change the text name, email and message?
    3. can I change the text of the message submit button?
    3. can I change the color of the message submit button?
    4. can I change the color around the fill in area?

    Thank you.
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !


    You can make captcha off from theme option panel
    Appearance=> Theme Options=> Lead Capture Settings.

    You can change fields and texts from
    Appearance=> custom Lead forms

    Paste the code given below in Custom CSS section for submit button color
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .signupform input[type="submit"] {
    background: yellow;
    }
    

    Thanks & Regards
    Pramod
     
  3. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Thank you but I mean the contact page not the lead forms.

    See attachment ->
     

    Attached Files:

  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    You need to edit a file name template-contact.php in order to make above mentioned changes.
    (Appearance->Theme Editor) of your dashboard.

    To change color of submit button and area around input boxes use the following code in custom css.
    (Appearance->Theme Options->Styling Options->Custom Css) of your dashboard.

    Code:
    #contactForm input[type="submit"] {
    background: green;
    border-radius: 40px;
    }
    #contactForm input[type="text"], #contactForm input[type="email"], #contactForm textarea {
    box-shadow: 0 0 0 6px rgb(74, 255, 0);
    }
    Thanks,
    Praveen
     

Share This Page