• I would like to maintain the three bars of the vertical menu stick to the right of the header. It is on the right if I don’t show the slogan / short description on the header. But if I show the slogan, the three bars menu goes to the center of the header, and the slogan goes to the right. ¿How can I fix it so that the three bar menu shows always on the right? and the slogan at left or at the center? I tried changing the position of the logo also but it didn’t work.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Link to site?

    Thread Starter jaionecas

    (@jaionecas)

    Let’s start with:

    .navbar .btn-toggle-nav .btn {
        position: fixed;
        right: 0%; /* Adjust */
    }

    And center Tagline using:

    .navbar-wrapper .navbar h2.site-description {
        position: relative;
        left: -22%;
    }

    Thread Starter jaionecas

    (@jaionecas)

    Thank you very much, I really appreciate your kind help, THANK YOU!!

    I am sorry , but I don’t know anything of css and html code. Where do I have to insert this? At the beginning of index.php template?

    This is what I have in this 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 ?>
    <div id=”main-wrapper” class=”<?php echo implode(‘ ‘, apply_filters( ‘tc_main_wrapper_classes’ , array(‘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=”<?php echo implode(‘ ‘, apply_filters( ‘tc_column_content_wrapper_classes’ , array(‘row’ ,’column-content-wrapper’) ) ) ?>”>

    <?php do_action( ‘__before_article_container’); ##hook of left sidebar?>

    <div id=”content” class=”<?php echo implode(‘ ‘, apply_filters( ‘tc_article_container_class’ , array( TC_utils::tc_get_layout( TC_utils::tc_id() , ‘class’ ) , ‘article-container’ ) ) ) ?>”>

    <?php do_action (‘__before_loop’);##hooks the heading 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(); ?>

    <?php do_action (‘__before_article’) ?>
    <article <?php tc__f(‘__article_selectors’) ?>>
    <?php do_action( ‘__loop’ ); ?>
    </article>
    <?php do_action (‘__after_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_footer ?>

    Thread Starter jaionecas

    (@jaionecas)

    Or maybe it is in header.php, or sidebar-left.php , or sidebar-right.php ?

    Sorry but all of this is new for me. Thank you very much in advance

    Thread Starter jaionecas

    (@jaionecas)

    I already managed it ! :
    http://www.letsdobettermarketing.com
    !!
    Thank you very much. Just introduced the code in personalising options, in personalised CSS

    Many thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Fix three bars of the vertical menu on the right not in the center of the header’ is closed to new replies.