Editing Home Page

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by pfung, Nov 29, 2015.

  1. pfung

    pfung Member

    Joined:
    Aug 21, 2012
    Messages:
    31
    Likes Received:
    1
    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!
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please follow the screenshots given below.

    1) main_heading_below_slider1.png

    2) main_heading_below_slider2.png

    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. pfung

    pfung Member

    Joined:
    Aug 21, 2012
    Messages:
    31
    Likes Received:
    1
    Thanks Priyanka!
    I did both steps but after pasting the code to underneath the slider, its not centered. How do I center it?
     
  4. priya

    priya Guest

    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
     

Share This Page