Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #387000

    Hi
    At the clients request I have a site where the logo overlaps the slider and doesn’t sit in the navigation bar (t-e-c-systems.com) Is there a way to make the logo bigger without changing the size of the navigation bar? And if so is there a way to make the navigation bar even smaller?
    Many thanks
    AnjiG

    #387267

    Hey AnjiG!

    Add this to your custom CSS.

    .logo, .logo * {
      max-height: 10000px !important;
      overflow: visible !important;
    }

    And you can change the size of the header in Dashboard > Enfold > Header.

    Best regards,
    Elliott

    #387425

    Elliott
    Brilliant! Thanks.

    #387498

    Elliott
    Just another question…the logo is bigger but it now isn’t responsive. Is it possible to make it so?
    Thanks
    AnjiG

    #388041

    Hey!

    Add this.

    @media only screen and (max-width: 767px) {
    #top .logo, .logo * {
      max-height: 200px !important;
    }
    }

    Best regards,
    Elliott

    #388376

    Hi Elliott
    I’m afraid that doesn’t seem to work…any other suggestions?
    Thanks
    AnjiG

    #388925

    Hey!

    The size looks fine but the position is a bit off. Is that what you want to change? Try this:

    @media only screen and (max-width: 767px) {
    strong.logo {
    top: 20px;
    left: 20px;
    }}

    A screenshot will help.

    Best regards,
    Ismael

    #389010
    This reply has been marked as private.
    #390708

    Hey!

    Thank you for the info. Please try to add this on functions.php:

    add_action('wp_footer', 'ava_mobile_header', 5);
    function ava_mobile_header(){
    ?>
    <script>
    (function($){
        $(window).scroll(function() {
    		if($(window).width() <= 989){	
    			var header = $('.html_header_top.html_header_sticky #header');
    			header.addClass('header-scrolled');
    		}	
        });
    })(jQuery);
    </script>
    <?php
    }

    Remove the browser cache then reload the page.

    Cheers!
    Ismael

    #390737

    Hi Ismael
    I put the info in functions.php and have now got this error message. I also can’t get into wordpress now.

    Parse error: syntax error, unexpected T_FUNCTION, expecting T_STRING or T_VARIABLE or ‘$’ in /home/tecsystems/public_html/wp/wp-content/themes/enfold/functions.php on line 509

    Help!
    AnjiG

    #390752

    Hi Ismael (again!)
    Panic over…took out the recent info from functions.php and tried again and this time it worked (not quite sure what happened last time).
    Thanks so much for this – Enfold support is amazing!
    AnjiG

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Logo larger Navigation bar small’ is closed to new replies.