Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter evolve2012

    (@evolve2012)

    Here the green.css: http://pastebin.com/PdMvmyC9

    It will be deleted after 1 week. I cannot paste on this post. It remain blank as my post above

    Thanks

    Thread Starter evolve2012

    (@evolve2012)

    Hi rdellconsulting

    Thanks for replying. Unfortunately, it remain the same, the costumize’it also still refresh automatically

    This is the header.php:

    <?php
    /**
     * The Header for Customizr.
     *
     * Displays all of the <head> section and everything up till <div id="main-wrapper">
     *
     * @package Customizr
     * @since Customizr 1.0
     */
    ?>
    <!DOCTYPE html>
    <!--[if IE 7]>
    <html class="ie ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html class="ie ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 7) | !(IE 8)  ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    <?php tc__f('rec' , __FILE__ , __FUNCTION__ ); ?>
    
    	<?php do_action( '__before_body' ); ?>
    
    	<body <?php body_class(); ?> itemscope itemtype="http://schema.org/WebPage">
    
    		<?php do_action( '__before_header' ); ?>
    
    	   	<header class="tc-header clearfix row-fluid" role="banner">
    
    			<?php do_action( '__header' ); ?>
    
    		</header>
    
    		<?php
    		 //This hook is filtered with the slider
    		do_action ( '__after_header' )
    		?>

    This is index.php:

    <?php
    /**
     * The main template file. Includes the loop.
     *
     *
     * @package Customizr
     * @since Customizr 1.0
     */
    ?>
    <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?>
    <?php tc__f('rec' , __FILE__ , __FUNCTION__ ); ?>
    <div id="main-wrapper" class="container">
    
        <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?>
    
        <div class="container" role="main">
            <div class="row">
    
                <?php do_action( '__before_article_container'); ##hook of left sidebar?>
    
                    <div class="<?php echo tc__f( '__screen_layout' , tc__f ( '__ID' ) , 'class' ) ?> article-container">
    
                        <?php do_action ('__before_loop');##hooks the header of the list of post : archive, search... ?>
    
                            <?php if ( tc__f('__is_no_results') || is_404() ) : ##no search results or 404 cases ?>
                                <article <?php tc__f('__article_selectors') ?>>
                                    <?php do_action( '__loop' ); ?>
                                </article>
                            <?php endif; ?>
    
                            <?php if ( have_posts() && !is_404() ) : ?>
                                <?php while ( have_posts() ) : ##all other cases for single and lists: post, custom post type, page, archives, search, 404 ?>
                                    <?php the_post(); ?>
                                    <article <?php tc__f('__article_selectors') ?>>
                                        <?php
                                            do_action( '__loop' );
                                        ?>
                                    </article>
                                <?php endwhile; ?>
    
                            <?php endif; ##end if have posts ?>
    
                        <?php do_action ('__after_loop');##hook of the comments and the posts navigation with priorities 10 and 20 ?>
    
                    </div><!--.article-container -->
    
               <?php do_action( '__after_article_container'); ##hook of left sidebar?>
    
            </div><!--.row -->
        </div><!-- .container role: main -->
    
        <?php do_action( '__after_main_container' ); ?>
    
    </div><!--#main-wrapper"-->
    
    <?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>

    Can you see evidence after seeing those code?

    Thanks

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