[Resolved] Off Canvas Panel Logo On Mobile

Home Forums Support [Resolved] Off Canvas Panel Logo On Mobile

Home Forums Support Off Canvas Panel Logo On Mobile

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #895997
    Dung

    Hi GP Team,
    I activated the off canvas panel on mobile, is there anyway to have logo on top center of the canvas panel? (click the logo will link to homepage)
    Hope to have your support. Thank you very much.

    #896361
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You could add this PHP:

    add_action( 'generate_inside_slideout_navigation', function() {
        ?>
            <div class="off-canvas-logo">
                <a href="URL TO YOUR SITE"><img src="URL TO YOUR LOGO" alt="" /></a>
            </div>
        <?php
    } );

    Then you could use this CSS:

    .off-canvas-logo {
        text-align: center;
        margin-bottom: 15px;
    }

    Let me know πŸ™‚

    #896378
    Dung

    Hi Tom,
    I just did it. The logo is not shown, there are blank but you can click. When you click, it does not link to homepage. You can check it on my site.

    #896386
    Tom
    Lead Developer
    Lead Developer

    You need to replace URL TO YOUR SITE with the actual URL to your site, and URL TO YOUR LOGO to the URL of your logo.

    Let me know πŸ™‚

    #896388
    Dung

    Hi Tom,
    Well my bad, how can I get my logo URL?

    #896395
    Tom
    Lead Developer
    Lead Developer

    Right-click your logo and click “Copy image address” (or something like that, depending on your browser).

    #896402
    Dung

    Hi Tom,
    Very nice, it worked. Can we adjust the logo size, also the top, left and right margin?

    #896404
    Tom
    Lead Developer
    Lead Developer

    Yep, just adjust the CSS:

    .off-canvas-logo {
        text-align: center;
        margin-bottom: 15px;
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .off-canvas-logo img {
        max-width: 200px;
    }
    #896405
    Dung

    Hi Tom,
    So nice, thank you so much. I am really appreciated for your help.

    #896411
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

    #925380
    Dung

    Hi GP Team,
    Can I have the code for the text transform of submenu on the off canvas panel please.
    Hope for helping. Thank you so much.

    #925383
    Leo
    Staff
    Customer Support

    This should do on mobile:

    @media (max-width: 768px) {
        .slideout-navigation.main-navigation .main-nav ul ul li a {
            text-transform: uppercase;
        }
    }

    Let me know πŸ™‚

    #925387
    Dung

    Hi Leo,
    It worked very nice. Thank you so much.

    #925402
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.