Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • .navbar_inner > div > ul li li > a:hover,
    .navbar_inner > div > ul li li.sfHover > a,
    .navbar_inner > div > ul li li > a:focus,
    .navbar_inner > div > ul li li.current-menu-item > a,
    .navbar_inner > ul li li > a:hover,
    .navbar_inner > ul li li.sfHover > a,
    .navbar_inner > ul li li > a:focus,
    .navbar_inner > ul li li.current-menu-item > a {
      background: #262626;
    }

    1. check “show slider” on [theme option – slider] tab
    2. pick your post category on [slider content] tab

    i change

    .flex-direction-nav a {
      background:url("../images/bg_direction_nav.png") no-repeat scroll 0 0 #7A1700;
    }

    on css/flexslider.css file

    i dont know, if it can be replace on child themes

    copy your header.php to your child themes
    then modify your header themes from this

    <div class="clear"></div>
    			<nav id="site-navigation" class="main-nav" role="navigation">
    				<div class="navbar_inner">
    				<?php
    					wp_nav_menu( array(
    						'container'       => 'ul',
    		                'menu_class'      => 'sf-menu',
    		                'menu_id'         => 'topnav',
    		                'depth'           => 0,
    		                'theme_location' => 'primary'
    					) );
    				?>
    				</div>
    			</nav><!-- #site-navigation -->
    		</div>
    	</header><!-- #masthead -->
    	<?php if( (is_front_page()) && (of_get_option('sl_show') != 'no') ) { ?>
    	<section id="slider-wrapper">
    		<div class="container">
    	    	<?php get_template_part( 'slider' ); ?>
    		</div>
    	</section><!--#slider-->
      	<?php } ?>

    to

    <div class="clear">
    	<?php if( (is_front_page()) && (of_get_option('sl_show') != 'no') ) { ?>
    	<section id="slider-wrapper">
    		<div class="container">
    	    	<?php get_template_part( 'slider' ); ?>
    		</div>
    	</section><!--#slider-->
      	<?php } ?>
    </div>
    			<nav id="site-navigation" class="main-nav" role="navigation">
    				<div class="navbar_inner">
    				<?php
    					wp_nav_menu( array(
    						'container'       => 'ul',
    		                'menu_class'      => 'sf-menu',
    		                'menu_id'         => 'topnav',
    		                'depth'           => 0,
    		                'theme_location' => 'primary'
    					) );
    				?>
    				</div>
    			</nav><!-- #site-navigation -->
    		</div>
    	</header><!-- #masthead -->

    hope it help

    Thread Starter xpinx2pin

    (@xpinx2pin)

    i found my self
    1. create child theme
    2. copy index.php to child theme
    3. find this code
    <?php if (have_posts()) : while (have_posts()) : the_post();
    4. replace with this code

    <?php
    			$the_query = new WP_Query( 'cat=7' );
    		?>
    		<?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post();

    where cat=[category ID]

    Thread Starter xpinx2pin

    (@xpinx2pin)

    hi, i’m already fixed it by myself

    the change is on index file
    from
    <?php echo '<div class="featured-thumbnail">'; the_post_thumbnail('featured',array('title' => '')); echo '</div>'; ?>
    to
    <?php echo '<div id="featured">'; the_post_thumbnail('featured',array('title' => '')); echo '</div>'; ?>

    and on style.css
    from

    #featured-thumbnail {
        float: left;
        width: 100%;
    }

    to

    #featured {
        float: left;
        width: 100%;
    }

Viewing 6 replies - 1 through 6 (of 6 total)