Small improvement/ bug fixes request

Dear, 

The BeTheme is a fantastic theme with a lot of options! All respect to the whole team for maintaining this.
I have bought the theme and using the licence.

When building my site... I came accross two questions, which hopefully can be solved.

1) Close overlay menu automatically on one pagers see screen on: http://www.buro86.be/post1.jpg
2) When using the post format external link, the blog slider still uses the permalink of the item instead of the external link http://www.buro86.be/post2.jpg

Can you please come back to me asap if these issues can be solved in the next theme update?
Or maybe by adding some custom js code to the theme options these can already be solved?

Thank you very much!
Buro 86

Comments

  • Hey,

    1) At this moment, Overlay menu is not compatible with one page option but we will consider your request of course.

    2) As far as we know, we don't have any option for posts to link post titles to external links so we don't know where did you found such option.

    Thanks!
  • Dear, 

    Thanks for your feedback.

    What is The Jquery function to close the overlay at this moment when hitting the X ?
    I can replicate this functio for the other menu items which can currently help me to keep this layout.

    Thanks for coming back to me asap.
    Best regards
  • What you ask for, requires files customization what in reference to Item Support Policy is not allowed. So if you want to modify files and don't know how, you should contact with your web developer. And if you want to modify javascript functions, you need to do it under js/scripts.js file.
  • Thanks for your feedback

    This simple code can do the trick:

    /* Menu overlay fix for one pagers */
    jQuery(function($){ 

     $( ".menu-item" ).click(function() {

        $('.overlay-menu-toggle').toggleClass('focus'); 
        $( '#Overlay' ).stop(true,true).fadeToggle(100);
     
       var menuH = $('#Overlay nav').height() / 2;
       $( '#Overlay nav' ).css( 'margin-top', '-' + menuH + 'px' );

      });

    });


    Best regards, 
    B86
Sign In or Register to comment.