Viewing 9 replies - 16 through 24 (of 24 total)
  • Hi!

    Thanks for all your help ?? I’ve made the changes above and it looks like that fixed the issue with the text thanks, looks great. I feel a little shy to say that the only thing is now the menu is aligning to the right and it doesn’t make any sense to me why it would. Soo i don’t really know what to do :/

    Theme Author pacethemes

    (@pacethemes)

    My mistake, over usage of tools :), i provided you the less code instead of CSS, please find below the CSS, replace the one i gave earlier with the below one

    .site-branding {
      float: none ;
      width: 100%;
      text-align: center;
    }
    #site-navigation {
      float: none;
      width: 100%;
      border-top: 1px solid #e5e5e5;
    }
    #site-navigation .nav {
      float: none;
      text-align: center;
      display: inline-block;
    }

    Hi!

    Sorry for the delay, been away on holiday ?? I made the changes above and it works perfectly thanks! I would set the ticket to resolved but i’m not the OP.

    Cannot thank you enough for a brilliant theme and great help!

    Thank you so much for providing the code above it was a great help. Is there a way to make the header fluid so my logo and menu stretch to the whole pages width?

    https://thomasinventory.com/

    Theme Author pacethemes

    (@pacethemes)

    Hello,

    Sorry for the delayed response, i was not able to respond back as i was travelling and had limited internet access

    Quest offers filters to change the container class to make it Fixed or Fluid. Below is the cde you have to add in Child Theme functions.php

    add_filter( 'quest_header_container_cls', 'header_container_cls' );
    function header_container_cls( $cls ) {
    	return 'container-fluid';
    }

    Please note that the same filters also exist for content and footer, below are the filter examples, you have to implement the callback functions

    add_filter( 'quest_content_container_cls', 'content_container_cls' );
    add_filter( 'quest_footer_container_cls', 'footer_container_cls' );

    Thank you so much it worked perfectly, although i ended up using it on a different page with the same theme!

    Theme Author pacethemes

    (@pacethemes)

    patmicg – Great to know that you got it working ?? Please rate the theme if you like it

    Same problem, tried all the above, does not work.

    Unfortunately one of the updates stopped the earlier solution working. I’ve tried both solutions and neither work any more :/

    The above does seem to work when there’s no logo though, i’m not sure if that helps figuring out the issue?

    Thanks!

Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘How to center logo and menu’ is closed to new replies.