1. How do we adjust the height of the header section (above the navigation links)? 2. How do we modify the colors of the navigation background, the sections above the footer (footer widget area) and the footer? 3. How do we add a dropdown menu to the Custom Lead Capture Form?
Hello, 1. Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .header_container { padding-top: 20px; padding-bottom:20px; } You can adjust the value of "padding-top" and "padding-bottom" as per your requirement to change the height of header section. 2. Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .menu-container { background: yellow; border-bottom: 1px solid yellow; border-top: 2px solid yellow; } .footer_container_wrapper { background: yellow; opacity: 0.7; } .bottom_footer_container { background: yellow; } In place of "yellow" you can put your color or color code to change the background color. 3. Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.