Hi Just want to know if I can use Custom CSS to remove the footer above where the first on the two footers at the bottom, the one above where the copyright should go and also the blog content. Can you provide how using the Custom CSS if possible. Thanks heaps.
Hello, 1. Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer_wrapper { display: none; } 2. Go to index.php present in your theme directory and remove the code given below Code: <div class="feature_content_inner"> <div class="feature_content_inner_head"> <?php if (inkthemes_get_option('inkthemes_blog_heading') != '') { ?> <h2><?php echo inkthemes_get_option('inkthemes_blog_heading'); ?></h2> <?php } else { ?> <h2> <?php _e('Show Your Latest Posts', 'salejunction'); ?> </h2> <?php } ?> <?php if (inkthemes_get_option('inkthemes_blog_desc') != '') { ?> <h6><?php echo inkthemes_get_option('inkthemes_blog_desc'); ?></h6> <?php } else { ?> <h6> <?php _e('Here you can showcase your latest blog and let users know about your recent activities.', 'salejunction'); ?> </h6> <?php } ?> </div> <ul class="feature_content_inner_box"> <?php query_posts('showposts=3'); if (have_posts()) : while (have_posts()) : the_post(); ?> <li> <div class="feature_content_inner_box1"><span class="f-date"> <?php the_time('j') ?> </span><span class="f-month"> <?php the_time('M') ?> </span> <h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title(); ?> </a></h5> <?php echo inkthemes_custom_trim_excerpt(15); ?> </div> </li> <?php endwhile; else: ?> <li> <div class="feature_content_inner_box1"> <p> <?php _e('Youy have not posted any blog yet.', 'salejunction'); ?> </p> </div> </li> <?php endif; ?> </ul> </div> Check image for reference