Search Results for 'mobile menu'

  • Mirela
    Participant

    Hello,

    Please add this code into your custom css box:

    @media (max-width: 480px) {
    #logo img { width: 100%;}
    .mobile_small_menu { margin-left: -41px;}
    }

    Result screenshot. Let us know.

    Best regards!

    firstpagenorthwest
    Participant

    My mobile menu is being covered by my logo. Please let me know how to fix this.

    This is the URL https://d7f.638.myftpupload.com/

    jthomas2016
    Participant

    Hi there, I would like the footer on my mobile view to appear as 2 columns (the 2 menu columns) side by side then the logo underneath, could you tell me how to do that?

    If you look at my credentials you will see my login info.

    Thanks

    Mirela
    Participant

    Hello,

    Sorry for the late reply.
    1-The line below the slider is actually a border. I see this is an added element. If you did not add the custom code then perhaps some plugins you have installed may have added it. Anyway, to remove it please add this code into your custom css box:

    @media (max-width: 480px){
    .header_wrapper.background--dark {
        border-bottom: none !important;
    }}

    I don’t see the white border in the side you are mentioning.

    2- To remove logo from mobile menu overlapping, please add this code:

    @media (max-width: 480px){
    #logo {
        left: 65px !important;
    }}

    Let us know if you need further help.

    Have a nice day!

    Mirela
    Participant

    Hello,

    I checked your site in mobile and the menu does work as it’s supposed to do. Please see the screenshot.
    What do you need to change?

    Let us know.

    Best regards!

    Mirela
    Participant

    Hello,

    1-By default there is no button to automatically open in new tab. But you can use the “button” element of Visual Composer. It is programmed to open in new tab.

    There isn’t a specific code snippet to make all available buttons open in new tabs. You have to find the responsible file and add the “target=_blank” into it.

    2-You can change this using custom css. Add this code into your custom css box:

    @media (max-width: 979px){
    .mobile_small_menu { padding-right: 20px !important;}
    #logo {
        left: 0 !important;
        right: 0 !important;
    }}

    Edit the values until you get what are you looking for.
    Let us know if you have further questions.

    Best regards!

    In reply to: responsive ( Tower)

    ankush shetty
    Participant

    Adding to the above reply.

    Snippet which you gave me regarding menu and logo overlapping in mobiles, it is working well except iphone 5 and smaller screen mobiles.

    @media (max-width: 480px){

    .header_11 #logo {

    margin-right: 8px !important;

    }}

    Please help.

    • This reply was modified 8 years, 8 months ago by ankush shetty.
    centralstates
    Participant

    Apologies I do not have a live site to direct you to with my question.

    I’m using a child theme on Tower.

    Two questions.

    First – I am looking to have the standard “button” open to a new page (target=_blank) globally. I do not have the option for this when creating a button and I do not find an option for this in the Tower settings. Is there a code snippet I can add to make all button links open in new pages globally?

    Secondly, I have a question about viewing our site on a mobile phone. I have mobile responsive active. When viewing it, the header at the top has our logo on the right and the hamburger menu on the left. Are there any options to change this? We would prefer our logo on the left and hamburger menu on the right.

    I appreciate any help.

    Your theme is working really well for us. I initially had issues loading the sample pages that come with the theme, but I’m close to launching our site and the process for building pages has been pretty good.

    thanks.

    -d

    In reply to: responsive ( Tower)

    ankush shetty
    Participant

    I had issues with the product page like 3 products was displaying in a single row when viewed on mobile. I wanted to it to be responsive like 1 product in each row

    support guys gave me the below code and it worked also but it has affected the logo now.

    Again the logo is overlapping on the menu in some mobiles.

    without this code it was working well like i mentioned in the prev comment.

    But when i apply this code again i am having probelms’.

     

    @media (max-width: 767px){

    .woocommerce.columns-3 ul.products li.product {

    width: 100% !important;

    }}

    In reply to: responsive ( Tower)

    ankush shetty
    Participant

    Hi,

    It works partially, when viewed in smaller screen mobiles,  menu is overlappimg over the logo.

    Please help.

    Thanks

    JJesenovec
    Participant

    If I read the above posts correctly, you did the below to make the header and menu sticky on the mobile site?  I tried doing this but it’s still not sticky. What else can I do?
    <p style=”box-sizing: border-box; margin: 0px 0px 22px; color: #4b4d4d; font-family: Raleway; font-size: 14px;”>9-I added this code into the <code style=”box-sizing: border-box; font-family: Inconsolata, Consolas, Monaco, ‘Lucida Console’, monospace; font-size: 15px; background: #f9f9f9; display: inline-block; padding: 0px 5px; line-height: 25px; border: 1px solid #dddddd; max-width: 95%; vertical-align: middle; margin-top: -3px;”>@media block:</p>

    <pre style=”box-sizing: border-box; overflow: auto; font-family: Inconsolata, Consolas, Monaco, ‘Lucida Console’, monospace; font-size: 15px; background: #f9f9f9; padding: 5px 10px; line-height: 18px; border: 1px solid #dddddd; max-width: 95%; vertical-align: middle; margin-top: 0px; margin-bottom: 24px; color: #4b4d4d;”><code style=”box-sizing: border-box; font-family: Inconsolata, Consolas, Monaco, ‘Lucida Console’, monospace; background: transparent; display: block; padding: 0px; line-height: 25px; border: none; max-width: 100%; vertical-align: middle; margin: 0px; overflow-wrap: normal; overflow: auto;”>.header_wrapper {
    position: fixed !important;
    margin-top: -2px;
    }
     

    Mirela
    Participant

    Hello,

    1-The menu is centered if you measure it with the header width, not the position of the logo above. However, you can always edit it’s position to your wish. Add this code itno your custom css box:

    .header_10 #navigation nav {
        left: 53% !important;
    }

    Result screenshot. Edit the value to your wish.

    2-This is the mobile header. It is set up to fit the width of a mobile screen so it is different from the desktop version. To make the background transparent please add this code into your custom css box:

    @media (max-width: 979px){
    .header_wrapper {
        background: rgba(255, 255, 255, 0) !important;
    }}

    3-Again, this is due to the default layout of mobile menu. To change the color of mobile menu item on hover, please add this code:

    .menu-small ul.menu > li > a:hover {
        color: #f5e841 !important;
    }

    Change the color to your wish.

    4-Add this code:

    @media (max-width: 979px){
    .header_10 #logo { left: 41% !important;}
    }

    Let us know.

    Best regards!

    poppyd
    Participant

    Hi

    When viewed on an ipad landscape (ie before mobile menu version starts) our main menu is getting pushed down and overlapping our image slider below.

    How can this be fixed please?

    Thanks

    Jo

    WernerEvers
    Participant

    I have a list of problems. It would be a great help if you can support me. There is a screenshot for each theme:

    Support 01
    The navigation menu is not centered correctly.

    Support 02
    In responsive mode, the header changes.
    The background is no longer transparent and a dark line emerges.

    Support 03
    In responsive mode there is no color change at hover.

    Support 04
    In mobile mode the logo is not centered.

    I look forward to your answer

    pixie5
    Participant

    Also what css code I can use to remove logo from mobile version on a particular page?

    the idea is to have revolution slider on home page without logos or menu and for them to be part of the slider itself.

Viewing 15 results - 961 through 975 (of 1,351 total)