need help to fix a gap
-
Hi
i use responsive theme
i got a slider in my home page there is a gap on its top and bottom of slider
can you help me to get rid of gap please
http://gaahang.comthis is front page PHP code
<?php // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) { exit; } /** * Site Front Page * * Note: You can overwrite front-page.php as well as any other Template in Child Theme. * Create the same file (name) include in /responsive-child-theme/ and you're all set to go! * @see http://codex.wordpress.org/Child_Themes and * http://themeid.com/forum/topic/505/child-theme-example/ * * @file front-page.php * @package Responsive * @author Emil Uzelac * @copyright 2003 - 2013 ThemeID * @license license.txt * @version Release: 1.0 * @filesource wp-content/themes/responsive/front-page.php * @link http://codex.wordpress.org/Template_Hierarchy * @since available since Release 1.0 */ /** * Globalize Theme Options */ $responsive_options = responsive_get_options(); /** * If front page is set to display the * blog posts index, include home.php; * otherwise, display static front page * content */ if ( 'posts' == get_option( 'show_on_front' ) && $responsive_options['front_page'] != 1 ) { get_template_part( 'home' ); } elseif ( 'page' == get_option( 'show_on_front' ) && $responsive_options['front_page'] != 1 ) { $template = get_post_meta( get_option( 'page_on_front' ), '_wp_page_template', true ); $template = ( $template == 'default' ) ? 'index.php' : $template; locate_template( $template, true ); } else { get_header(); //test for first install no database $db = get_option( 'responsive_theme_options' ); //test if all options are empty so we can display default text if they are $empty = ( empty( $responsive_options['home_headline'] ) && empty( $responsive_options['home_subheadline'] ) && empty( $responsive_options['home_content_area'] ) ) ? false : true; ?> <div id="featured" class="grid col-940"> <div id="featured-image" class="grid col-940 fit"> <?php $featured_content = ( !empty( $responsive_options['featured_content'] ) ) ? $responsive_options['featured_content'] : ''; ?> <?php echo do_shortcode( wpautop( $featured_content ) ); ?> </div> <!-- end of #featured-image --> </div><!-- end of #featured --> <?php get_sidebar( 'home' ); get_footer(); } ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘need help to fix a gap’ is closed to new replies.