Search Results for 'mobile menu'

  • CatenaSRE
    Participant

    I am using Tower 2.0 with a child theme. Just launched a website here:

    https://callabt.com

    It launched at 1 pm CDT U.S. on 4/26/17 so I hope you can see it. The social media icons at the top should be round, not square. And the search bar should not be showing.

    The site looks fine on desktop/laptop/tablet. There’s a problem with the mobile view.

    I have this set to use the side menu. The logo appears above the side menu. There’s a margin all around the website, and when you scroll through the site, it moves back and forth, like it’s scrolling horizontally. The logo on the menu shows all the time.

    1) My logo on the site is 271 x 72 pixels. Is that too wide? What is the maximum width for a logo? Is that causing the problem?

    2) Why is there a margin around the site? Why is it scrolling horizontally? I would like the site to appear without the side padding in mobile view.
    <div>Screen shots are on my Dropbox:</div>
    <div>https://www.dropbox.com/sh/uuxgm3oagplv0u6/AADDl7D3UiPmrLdUEP6JpNXWa?dl=0</div&gt;
    <div></div>
    <div>Please let me know. Thank you for your help.</div>

    Mirela
    Participant

    Hello,

    The mobile menu code is not present in your site. This means it’s not set up to display. Please go to General Options > Header Options > Show Responsive Menu Dropdown, set it ON.
    Let us know if you still can not see the menu.

    Best regards!

    domt
    Participant

    Hi.

    I’m using the Tower theme for a client’s site here: https://mcconowah.com and we’re having a lot of trouble with the mobile menu. We have a dark header with a white logo, but when the menu goes responsive (on a phone for instance), the logo is white (i.e. invisible) and so are any menu sub items.

    I can’t figure out how to get the background of the side menu to change. So, I tried adding a dark version of the logo. This was visible on the mobile menu, but was impossible to see on the desktop header. Whether I have pages set to light or dark header in the page options doesn’t matter, the logo doesn’t change. It stays dark. I switched it back to the light one for now.

    I haven’t even bothered to try to figure out the font colors yet.

    Please let me know if you can help.

    Thanks.

    Sue
    Participant
    This reply has been marked as private.
    Mirela
    Participant

    Hello,

    1-That is the location of the Top Navigation Area. All the content present there is composed by widgets. To add/remove content just go to Appearances > Widgets, in the “Top Header Right” (screenshot).

    2-That hole area is in fact the header. You can change it’s height in General Options > Header Options > Header Height (screenshot). Add padding to position the logo vertically using custom css.

    3-I already send you the custom css for this in the last reply. This block:

    header#header #navigation {
        float: left !important;
        margin-left: 32% !important;
        margin-top: 3% !important;
    }

    Just change the values to your wish. Save changes.

    4-Change the content width in General Options > Layout > Boxed Container Width(px) (screenshot)

    5-The three bars icon is the mobile menu. In mobile, tab on it to unfold the menu.
    You can see it in this screenshot i send you in the last reply:https://share.pho.to/AgAh4
    You have set OFF the “Show Responsive Menu Dropdown” option in General Options > Header Options. This is the responsible option that controls the display mobile menu or not.
    I already send you the code to resize the logo in mobile as well, in the last reply. The second block of code. Just edit the values to your wish.

    Best regards!

    Sue
    Participant
    This reply has been marked as private.
    Mirela
    Participant

    Hello,

    The screenshots are still not visible. Please use one of these online image sharing site’s:
    https://share.pho.to/
    https://postimage.io/
    to upload images and share the link with us.

    -Menu below logo, is on of the theme styles. To change the header style you have to go to General Options > Header Options (screenshot: https://pho.to/AgAfV) Select one of the available headers in the drop-down list. In this case the “Below the logo navigation with background” style would do the job.

    -If you want to keep the simple style and re-position the menu bar, then add this code into your custom css box:

    header#header #navigation {
        float: left !important;
        margin-left: 32% !important;
        margin-top: 3% !important;
    }

    This will be the result: https://www.clipular.com/c/6267092648329216.png?k=PZjhMj8IjYaDenNVm_3OoA9yVPc

    -For the mobile layout, i added this code into your csutom css box:

    @media (max-width: 480px){
    #logo img {
        margin-right: -60px !important;
        width: 366px !important;
    }}

    This will fix the logo position (screenshot). I also set to 100% the width of the boxed layout in General Options > Layout. This was causing the misalignment of the mobile layout.

    – We strongly suggest to assign the home page and blog page in General Options > Select Special Pages > Select Frontpage/Select Blog page. Some important styling are related to this.
    Let us know if you have further questions.

    Best regards!

    Sue
    Participant
    This reply has been marked as private.
    Mirela
    Participant

    Hello,

    1-The screenshot you send is not available.
    Please watch carefully the video tutorial on how to add/remove menu items from a menu. Can you send another valid screenshot? I don’t understand what you want to achieve.
    2-I see the menu items are still inside the page header bar. Do you want to keep them there?
    To remove the “Home/” too (that’s the breadcrumbs line) add this css code:

    .breadcrumbss {
        display: none;
    }

    3-This is not the form of theme in mobile. Please send us some valid wp credentials in a private reply. So we can check your configurations and see what has is causing this.

    Best regards!

    Sue
    Participant
    This reply has been marked as private.
    Mirela
    Participant

    Hello,

    The after navigation menu button does not display in mobile by default. To make it show up you have to use custom css. Add the code into your custom css box located in General Options.
    If you need help with it, send us your site’s url. So we can give you the exact code to add.

    Best regards!

    Ibmex
    Participant

    Hi, I was updating my site and I can not put the button, which already exists in the desktop version menu, in the mobile version menu, how can i put it ??

    Mirela
    Participant

    Hello,

    Please edit the last code to this:

    @media (max-width: 480px){
    #logo img.dark { 
     width: 100%;
     padding-left: 30px !important; 
    }
    .mobile_small_menu {
        margin-left: -18px !important;
    }
    }

    We added this code: .mobile_small_menu { margin-left: -18px !important;} inside the mobile block (@media 480px). Edit the value to your wish.

    Best regards!

    Mirela
    Participant

    Hello,

    Yes, you can remove the display of some pages by using custom css. You just have to find the responsible id of each of them. Make the removal code target only the menu items you do not wish to have.
    Can i see a link of the site? Let me know one of the menu items you want not to show in mobile and i will send you the right code.

    Best regards!

    HDGadmin
    Participant

    Is there a way to select which pages show up in my mobile menu? Right now every page I have is showing in my mobile menu making it hard to navigate.

Viewing 15 results - 856 through 870 (of 1,327 total)