Skip to main content

How can I choose header in ipad landscape view> The header I chooose for ipad portrait view changes to the desktop header when ipad is rotated to landscape view

Comments

9 comments

  • Charles Stockdale

    How long does it take to get approval? It's been 12 hours now

    0
  • Ariel H.

    Hi Charles,

    My apologies for the delay.

    Unfortunately, at this time, we do not have a specific mobile breakpoint for the tablet landscape view.  If the tablet in landscape mode has a width of more than 991px, will be displayed on the page in desktop mode.

    Sorry for the inconvenience.

    Best regards,
    Ariel H.

    0
  • Charles Stockdale

    Most people view ipads and other tablets in landscape mode. This gives the widest view to be able to see everything. Landscape should then be your default view when working in tablet view.

    This has been an issue with Brizy for over two years. There should be an option to make desktop header and other blocks invisible in tablet landscape design view

    0
  • Charles Stockdale

    Brizy is a great product...the best. Let's make it even better.

    0
  • Ariel H.

    Hi Charles,

    We appreciate your feedback and support.

    Currently, we only have three options for responsive design. 
    However, we are working on adding a new feature called 'Breakpoint Manager', this is one of the Main Focuses we have for 2023 - https://prnt.sc/WI7Gsqjjyggw

    Best regards,
    Ariel H.

    0
  • Charles Stockdale

    Thank you for your response. Breakpoint manager looks promising. Would it be easier to be able to hide blocks in tablet landscape mode like you can in portrait view? Then you would be able to create headers and other blocks for tablet landscape view and simply hide them in other views.

    0
  • Ariel H.

    Hi Charles,

    Thank you for the update.

    For now, that would be a good temporary solution - https://youtu.be/l4ayHuEbzaE
    You can create separate headers for the tablet landscape view and hide them in other views.

    Best regards,
    Ariel H.

    0
  • Charles Stockdale

    Hello, The video at the link you sent only shows how to hide blocks in tablet portrait view. There is no tablet landscape view in Brizy that I can find. When I then view the web page in tablet portrait view Brizy automatically uses the desktop header past the set breakpoint pixel point that is preset for tablet landscape.. Do you know a way to hide blocks in tablet landscape view? Thanks, Chuck Stockdale

    0
  • Ariel H.

    Hi Chuck,

    Thank you for the update.

    For now, we don't have this feature in place; however, this can be possible with custom CSS.  

    This is demonstrated on this screencast - https://youtu.be/pQVWVPFzlPw

    Here is an example of the CSS used on this page:

    /* Set the default display value to hidden */
    #tabletmenu {
      display: none;
    }

    /* Show the element when the viewport width is between 768px and 1024px */
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      #tabletmenu {
        display: block;
      }
      #mainmenu {
      display: none;
    }
    }

    Breakpoints are best explained in this article:
    https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    The custom CSS can be placed in Appearance → Customize → Additional CSS.

    It is important to note that every website is unique, and the CSS may require some modifications. If necessary, please review the code and make any necessary adjustments to fit your website.

    Best regards,
    Ariel H.

    0

Please sign in to leave a comment.