Lead capture form different color in widget area

Discussion in 'Blackriders WordPress Theme' started by securepro, Dec 23, 2013.

  1. securepro

    securepro New Member

    Joined:
    Oct 23, 2013
    Messages:
    5
    Likes Received:
    0
    1. Lead capture form on main page orange. All other pages blue.. how do I change it so it’s the same color on every page. Even in the widget area.
    2. What plugin works with the click to call button on top of page?
    3. I changed the background color of the nav bar, but how do I change the color of the background where the logo & call button reside? I am trying to get a specific color matching the font color I am using?

      www.secureprotechnologies.com
      thanks
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    #signinForm {
    background: darkorange ! important;
    }
    #signinForm input[type="text"], #signinForm input[type="email"], #signinForm select {
    border: 6px solid orange ! important;
    }
    #signinForm textarea {
    border: 6px solid orange ! important;
    }
    .signinformbox_wrapper {
    background: darkorange ! important;
    }
    #signinForm input[type="submit"] {
    background: #0896be ! important;
    border-radius: 5px ! important;
    }
    #signinForm input[type="submit"]:hover {
    background: #10b2e1 ! important;
    }
    
    You can change the color and color code as per your requirement.

    2. Theme already have this "tap to call" feature for mobile devices, you do not need any plugin to use it.
    Go to the Appearance -> Theme Options -> General Settings panel in your dashboard and enter your mobile number in the
    "Contact Number For Tap To Call Feature" section.

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

    Code:
    .header_container {
    background: lightblue;
    }
    In place of "lightblue" you can put your color or color code.
     

Share This Page