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. What plugin works with the click to call button on top of page? 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
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.