Change text in Leads Capture message box

Discussion in 'Local Business WordPress Theme' started by mrnic, May 17, 2013.

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

    mrnic New Member

    Joined:
    Jul 27, 2012
    Messages:
    10
    Likes Received:
    0
    How can I edit the text that appears in the leads capture message box "Enter your information here" I would also like to change the font in the lead capture boxes to arial
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to the front-page.php file present in your theme directory and edit the text as shown in the image given below.

    [​IMG]

    This will change the text of leads capture message box.

    Now ,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .signup .signupleft .signupinfo h1 {
    font-family: arial;
    }
    .signupform input[type="text"] {
    font-family: arial;
    }
    .signupform textarea {
    font-family: arial;
    }
    .signupform input.btnsubmit, .signupform input.btnsubmit:hover {
    font-family: arial;
    }
    This will change the font of the lead capture boxes to arial.
     
  3. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    Hi Piyush
    Sorry, I think I explained it wrong.:)
    When a user fills in the captcha form and clicks send, a message appears when the message is sent.
    That is the tect I would like to change and personalise. Is this possible.

    Thanks
    Peter
     
  4. Gourav

    Gourav Support Staff

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

    Go to lead_class.php present in your theme directory and follow the instruction as shown in image given below

    [​IMG]

    Now,

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


    Code:
    .sucess-send h2{
    font-family:your font type;
    font-size:25px;
    color:red;
    }
     
  5. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    Thak you gourav.:)
     
Thread Status:
Not open for further replies.

Share This Page