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

    Hallo,

    ich möchte, das bei Tablets früher auf die einspaltige Ansicht gewechselt wird also z. B. ab einer Breite von 860px.
    Wie erreiche ich das mit @media?

    #1078812

    Hey Roland,

    You need a speicific media query for which thing?

    Best regards,
    Basilis

    #1078873

    Hello, thanks for the answer.
    I would like to change the entire website to the mobile view from a maximum resolution of 1200px.

    #1079405

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1200px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #1079491

    Hello, thanks, but that does not work.

    #1079656

    Hi nomore007,

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

    Best regards,
    Victoria

    #1079695

    Hier der Link

    #1080244

    Hi nomore007,

    Best regards,
    Victoria

    #1080357

    hello, the menu is not the problem. I would like that on trays in the landscape format on the same view is switched as in the portrait format.

    #1081644

    Hi,

    Thanks for the update.

    Are you referring to the grid row cells? This css code should force the grid row cells to adjust to a single column when the screen width is equal or less than 1200px.

    @media only screen and (max-width: 1200px) {
    .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
        display: block;
    }
    }

    Best regards,
    Ismael

    #1087677

    Hallo, auch das funktioiert leider nicht. :-(

    #1088118

    Hi,

    Could you provide a screenshot of the section or area that you want to adjust? You can upload the screenshots to imgur or dropbox.

    Best regards,
    Ismael

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