Hello Support Team, Is there a way to reorder the home page? I'd like to move both the "Home Page Main Heading" and "Home Page Sub Heading" right below the slider, just above the product category buttons and the product images. Thank you!
Hello, Greetings from InkThemes! Please follow the screenshots given below. 1) 2) Hope it will resolve your issue Do let me know if you need more assistance, Thanks & Regards! Priyanka InkThemes.com
Thanks Priyanka! I did both steps but after pasting the code to underneath the slider, its not centered. How do I center it?
Hello, It seems that you have missed out to add the right code as I mentioned in my previous screenshot, kindly look at below code Code: <div class="feature_content"> <div class="feature_content_inner_head"> <?php if (inkthemes_get_option('inkthemes_content_heading') != '') { ?> <h2><?php echo inkthemes_get_option('inkthemes_content_heading'); ?></h2> <?php } else { ?> <h2> <?php _e('Grab Customer Attention', 'salejunction'); ?> </h2> <?php } ?> <?php if (inkthemes_get_option('inkthemes_content_description') != '') { ?> <h6><?php echo inkthemes_get_option('inkthemes_content_description'); ?></h6> <?php } else { ?> <h6> <?php _e('Mention a unique punchline here for your business that will grab the customer attention.', 'salejunction'); ?> </h6> <?php } ?> </div> </div> You can try to add the above code in your index.php file instead of your previous code. Or, you can add below CSS code in Custom CSS field of your dashboard. Code: .feature_content_inner_head { text-align: center; margin-top: 40px !important; margin-bottom: 37px !important; } Hope it will resolve your issue Do let me know if you need more assistance, Thanks & Regards! Priyanka InkThemes.com