Hi, My theme is BusinessGrow One Page WordPress Theme and my site is justsayingwhatif.com and I need some help please. 1. in the slider section, how do I move the text to the left? it is currently showing up on my pictures. 2. in the same slider area, i want to make the background color of the text neutral or no color 3. how do i remove Formget and use contact form 7 from jetpack? thanks makreeta
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .slider_text_container a { background: transparent; } .slider_text_container { left: 11%; } Adjust its value as per your requirements. For contact form Go to front-page.php present in your theme directory and replace current code Code: <?php if (inkthemes_get_option('inkthemes_our_contact_input_iframe_heading') != '') { ?> <h1><?php echo stripslashes(inkthemes_get_option('inkthemes_our_contact_input_iframe_heading')); ?></h1> <?php } else { ?> <h1>Create your own form at <a href="http://formget.com/app" target="_blank">formget.com/app</a></h1> <?php } ?> <?php if (inkthemes_get_option('inkthemes_contact_iframe_code') != '') { ?> <?php echo stripslashes(inkthemes_get_option('inkthemes_contact_iframe_code')); ?> <?php } else { ?> <?php get_template_part('contact'); ?> <?php } ?> with code given below Code: <?php echo do_shortcode( 'ENTER YOUR CONTACT FORM 7 SHORTCODE HERE' ) ?> Check image for reference Thanks & Regards Gourav Shrivastava