Okay
  Public Ticket #2933197
customize display on mobile
Closed

Comments

  •  18
    trigona started the conversation

    hi,

    The sites /templates works fine. But only the display on a mobile must be better.

    1. Some of the  titles are to big, and  are broken incorrectly. Example;

    Psychosomatis
    che
    fysiotherapie

    2. The location banner above is also shown on the mobile (location Berghem)Is Is it possible to set this off for the mobile only?   Same for the header menu.

  •  1,603
    Barry replied

    Hi there,

    Thank you for your message.

    1. The only solution I can provide here is to reduce the font size for mobile screens. You can add the following CSS code to Appearance -> Customize -> Additional CSS:

    /* Change page title font size on mobile */
    @media (max-width: 992px) {
        .page-header--title {
            font-size: 32px;
        }
    }
    

    2. I'm sorry but I don't fully understand which elements you would like to hide exactly for mobile screens. If you mean to hide all the 4 contact details in the header on mobile screens you can do this under Appearance -> Customize -> Theme Options -> Header by setting the "Bottom Header" setting to "Hide mobile only"

    Also to disable the "header menu" on mobile do you mean to disable the menu from the main navigation (by using the mobile toggle) or the menu in the header topbar? Here are the answers to both options:

    - Hide main menu (with toggle)

    You can use the following CSS:

    /* Remove mobile menu */
    @media (max-width: 992px) {
        .header-navigation {
            display: none;
        }
    }
    

    - Hide header topbar

    You can do this under Appearance -> Customize -> Theme Options -> Topbar by setting the "Topbar" option to "Hide mobile only"

    If you mean something else please explain further in detail.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  •  18
    trigona replied

    Hi Barry, thanks!  That was exactly where I was looking for.

    This one can close too.

  •  1,603
    Barry replied

    Great, that's good to hearsmile.png

    Ticket is closed on your request, feel free to open a new ticket if you have any other questions.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes