BusinessGrow One Page WordPress Theme - Slider Section

Discussion in 'BusinessGrow One Page WordPress Theme' started by makreeta, Jun 27, 2014.

  1. makreeta

    makreeta New Member

    Joined:
    Jun 21, 2014
    Messages:
    9
    Likes Received:
    0
    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
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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

    2014-06-21_1136.png





    Thanks & Regards
    Gourav Shrivastava
     

Share This Page