xpinx2pin
Forum Replies Created
-
.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; }
Forum: Themes and Templates
In reply to: [Duena] Slider Not Displaying Feature Images1. check “show slider” on [theme option – slider] tab
2. pick your post category on [slider content] tabForum: Themes and Templates
In reply to: [Duena] Change color of slider arrowsi 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
Forum: Themes and Templates
In reply to: [Duena] Duena Theme: Moving the nav bar below slidercopy 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
Forum: Themes and Templates
In reply to: [Duena] Select specific category on front pagei 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]
Forum: Themes and Templates
In reply to: [Point] Featured Image with featured video plus integrationhi, 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%; }