Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1074031

    Good evening,

    two questions:
    1. how can i change the responsive behavior. the design should jus early in mobile menü because navigation crashes with logo:
    https://ibb.co/L5T7sVJ

    2. i use the rss feed widget in my footer column, the link should open in a new tab. how can i set this option?

    • This topic was modified 5 years, 10 months ago by lzeuner.
    #1075077

    anybody an idea?

    #1075123

    Hi lzeuner,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1075125

    please

    #1076264

    @Victoria do you get the link in private content?

    #1076285

    Hi,

    Thanks for the update.

    1.) You can use this css code to decrease the logo size.

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        width: 60%;
    }
    }

    2.) Did you remove the rss feed widget? It’s not in the footer container.

    Best regards,
    Ismael

    #1076292

    1.) I want the menu to jump to the current logo size in mobile menu mode so that the logo and navigation do not overlap.

    2).no i don t remove it, it is stillt here:
    https://ibb.co/Nm66D4Z

    #1077362

    Hi,

    1.) We’re not really sure what you mean by that. Can you provide a screenshot of the layout that you prefer on mobile view?

    2.) Add this in the functions.php file to set the target attribute of the rss link.

    add_action('wp_footer', 'ava_rss_target');
    function ava_rss_target(){
    ?>
    <script type="text/javascript">
    (function($) {  
        $('.rsswidget').attr('target', '_blank');
    })(jQuery);
    </script>
    <?php
    }
    

    Best regards,
    Ismael

    #1079591

    @Ismael

    1)
    When i watch the website for example on an iPad the menu overlays the logo. the menu should switch at this point when the menu reachs the logo.
    Please see in my screenshot, there you see the overlaying menu <–> logo

    https://ibb.co/wCRxHkf

    2)
    that works thank you!

    #1080214

    Hi,

    Thanks for the update.

    Did you set the Enfold > Main Menu > “Menu Items for mobile” settings to the second option? That is going to force the mobile menu to display on tablet screens. We can also decrease the space between the menu items or adjust their font size in order to create more space between the menu container and the logo.

    @media only screen and (max-width: 1024px) {
    .av-main-nav > li > a {
        padding: 0 8px;
        font-size: 12px;
    }
    
    .logo img {
        height: 66px;
        top: 10px;
    }
    }
    

    Best regards,
    Ismael

    #1080272

    Yes i activate the second option already.
    I added you code to the custom.css but this don’t solve the problem yet.
    Please have a look. When the size of your browser windos goes smaller and smaller you will see the Menu withe the entry “Haus & Wohnen” will overlay the logo and this is what i want to fix. When the entry “Haus & Wohnen” reachs the logo it should switch to mobile Menu.

    View post on imgur.com

    • This reply was modified 5 years, 10 months ago by lzeuner.
    #1080923

    Hi,

    Thanks for the update.

    Yes, that is the issue that we are trying to fix with that css modification. Did you remove the browser cache after adding the css code or before checking the page?

    Best regards,
    Ismael

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