Lead Capture Form Background Color & More

Discussion in 'Infoway WordPress Theme' started by itzcandy, Mar 16, 2014.

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

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    I am using the Infoway Template for a new website. I have a couple of questions.

    #1 - How do I change the background color from Black to blue on the lead capture form on the home page/blog page etc.? How do I also change the submit button to blue as well.

    #2 - How do I change the quote at the bottom of the home page and the image that goes with it to blue?

    #3 - How do I change the blog titles to blue on both the blog page and the post page?

    Thank you for your help!
     
  2. Piyush

    Piyush Support Staff

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

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .signupForm .heading {
    background: red;
    }
    .signupForm .signinForm input[type="submit"],.sidebar .signupForm .signinForm input[type="submit"] {
    background: red;
    border-radius: 5px;
    }
    .signupForm .signinForm input[type="submit"]:hover,.sidebar .signupForm .signinForm input[type="submit"]:hover {
    background: blue;
    } 
    In place of "red" and "blue" you can put your color or color code.

    2. Go to the Appearance -> Theme Options -> Testimonial Settings panel in your dashboard and
    put your text in the Testimonial Heading section and also in Testimonial description section.

    And if your want to change the color of quote image then go to images directory present in your theme directory
    and replace your image with present commabox.png image or edit it.

    The name of image is "commabox.png"

    Note:- Use same name for your edited image and remove the current image.

    3. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content-bar .post .post_title a {
    color: blue;
    } 
    In place of "blue" you can put your color or color code.
     
  3. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Thank you so much! All good now!
     
Thread Status:
Not open for further replies.

Share This Page