1. How do I add full width header image above menu (instead of logo) 2. How do I change text box over slider from black to another color or transparent? 3. How do I make the 3 circles, under the slider, bigger diameter? Thanks very much! --Jeff
Hello, 1. For your first issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .header{ background-image:url(Enter Your Image Address Here) !important; height:300px; background-size:100% 100%; background-position:center; } .header .logo{display:none;} Adjust height as per your requirements. 2.For your second issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .flex-caption{ background:transparent; } 3.For your third issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature-content-inner .circle img { width: 192px; height: 188px; } .feature-content-inner .circle { width: 202px; height: 198px; } This will solve your issue.