Search Results for 'mobile menu'

Results from the Forum
sejpost
tagDiv Member

I added it to the Custom CSS for to remove the last link (Advertise) from the desktop nav bar using this code:


@media
(min-width: 768px){
.menu-item-42507 {
display: none;
}
}

It still shows up on the desktop site, but I only want it to show up on the mobile menu. Any help?

eranoadifila
tagDiv Member

basicly all button not working..
i guess the button with ajax, like menu button for mobile view, load more, and so on

byothe
Participant
#0

Hello,

I would like to know if it is possible to put a custom Logo in the Sticky Menu ?
I don’t want to put my regular menu or my mobile menu

Regards

MudassarSaeed
Participant
#0

Hi, earlier i posted this https://forum.tagdiv.com/topic/newsmag-home-page-need-help/ because i needed some help to build my home page, now i have built it but the problem is that the “navbar”(Six Dots which you click and then category appears, hope it’s called navbar, if not then you know what i mean) for mobile is just below the logo and it can’t be tapped without tapping the logo which redirects to the homepage and it also looks very awkward , so how can i correct it so those 6 dots which you click and the menus appear in cellphones are separate from the logo, meaning there’s ample space between them. Here you can check the tapping error which i am talking about.

check this screen shot http://postimg.org/image/rp9yoqodj/ or the link below.

https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Freportedtimes.com%2F&tab=mobile

2. Another thing i noticed that after i had built my homepage and selecting it from settings > readings, i am no longer able to change the header style in newsmag. i mean it does change it but the website remains the same and no difference appears..

Thanks!

dizajn
tagDiv Member

Hi, thinking to have footer menu assigned to mobile main menu so it is opened as mobile menu. Now it is only main menu as mobile menu.

Alin [tagDiv]
tagDiv Staff

Hi,

Not sure what you mean, the subfooter menu is displayed on mobiles – http://screencast.com/t/DM0l12ZnbWb8

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You cannot load another submenu for mobile devices. A solution is to add the submenu as usually for the menu item that it is megamenu and hide it only for tablets and desktop. So for mobile it will look the same – http://screencast.com/t/a6XrmiMi
The result in this point is – http://screencast.com/t/x1QZJm2Ahb so you can use media queries to hide the subitems on for tablets and desktop – http://screencast.com/t/BfK7I47VU
Result on mobilehttp://screencast.com/t/wYEpuZKBNcTj

@media(min-width: 768px) {
.menu-item-3994 .sub-menu > .td-normal-menu {
display: none;
}
}

Thanks!

dizajn
Participant
#0

Is it possible to have footer menu also seen on mobile version?

Thanks

Anonymous
tagDiv Member

Hello Alin, i want to ask how can i change mobile icon menu from this

https://www.dropbox.com/s/m8tfxyudep06s24/1.png

to this

https://www.dropbox.com/s/dal1ml0lx90evt0/0.png

i use font Font Awesome 4 Menus plugin https://wordpress.org/plugins/font-awesome-4-menus/ for icons menu and i want tu use this icon <i class=”fa fa-bars”></i> at http://fontawesome.io/icon/bars/ or something like that

Anonymous
tagDiv Member

Hello Andrei, i want to ask how can i change mobile icon menu from this

https://www.dropbox.com/s/m8tfxyudep06s24/1.png

to this

https://www.dropbox.com/s/dal1ml0lx90evt0/0.png

i use font Font Awesome 4 Menus plugin https://wordpress.org/plugins/font-awesome-4-menus/ for icons menu

Andy
tagDiv Member

Hi Alin,

Is there any way where I can load different Sub menu in PC and Mobile??.So that this problem can be solved

Thanks,
Anand

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the megamenu was not designed for mobile menu, so it will not display the page content there.
You could try to sort your submenu items in few categories – http://screencast.com/t/cJoRhJZNKilhttp://screencast.com/t/d3mYTHqv4
Or you can use the unique class of the menu item to create something similar where you need – http://screencast.com/t/NG6Z87oNQkjz

@media (min-width: 768px){
.menu-item-690 ul {
overflow: overlay;
height: 500px;
}
}

Thanks!

Andy
tagDiv Member

Hi Alin,

Thank you.Please take a look at the “International” menu in my website(http://www.newsmug.in/) This worked perfectly in PC.However in Mobile I cant see the sub menu items at all.Please guide me how to make this work in mobile as well. In mobile if the sub menu items are displayed that’s just fine(For eg : Please take a look at my “state” menu in mobile.I want the sub menu items to be displayed like that)

Thanks,
Anand

Bogdan B.
tagDiv Staff

Hello,

Thank you for this solution. I am sure it will help a lot of people here on the forum with the mobile version of their website. It is a good alternative to showing the top menu on the mobile version. We hope in a future update we will be able to adjust our mobile version and implement a few options for it as well.

Thank you!

Yannik97
Participant
#0

Hey,
the top menu is deactivated in mobile view because it looks better without. But then there is no Login/Logout/Register button for users. So I changed the menu-mobile.php to this:
I think this isn’t the best solution but it works fine. When user is logged in there is a logout button and when user isn’t logged in there is a login/register button in mobile menu.

Hope it will help you.

<?php
 
/*  ----------------------------------------------------------------------------
    This is the mobile off canvas menu
 */
 
?>
<div id="td-mobile-nav">
    <!-- mobile menu close -->
    <div class="td-mobile-close">
        <a href="#"><?php _etd('CLOSE', TD_THEME_NAME); ?></a>
        <div class="td-nav-triangle"></div>
    </div>
 
    <div class="td-mobile-content">
        <?php
        wp_nav_menu(array(
            'theme_location' => 'header-menu',
            'menu_class'=> '',
            'fallback_cb' => 'td_wp_no_mobile_menu'
        ));
 
        //if no menu
        function td_wp_no_mobile_menu() {
            //this is the default menu
            echo '<ul class="">';
            echo '<li class="menu-item-first"><a href="' . esc_url(home_url( '/' )) . 'wp-admin/nav-menus.php">Click here - to use the wp menu builder</a></li>';
            echo '</ul>';
        }
 
        ?>
 
        <ul>
        <?php
          if ( is_user_logged_in() ) {
              echo '<li class="menu-item"><a href="' . wp_logout_url(home_url( '/' )) . '"> LOGOUT</a></li>';
          } else {
              echo '<li><a href="#login-form">LOGIN/REGISTER</a></li>';
          }
        ?>
        </ul>
 
    </div>
</div>
Bogdan B.
tagDiv Staff

Hello,

1) The top menu containing the login widget is hiden on the mobile version. It was a design choice and it can be forced to appear using custom css:

@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}

Just add the code in the theme panel->custom css box.

2) and 3) please provide more details to your problems. Be more descriptive and provide a link to your website so we can inspect the problems and come up with a solution.

Thank you!

Catalin
tagDiv Staff

Hi sejpost,

Yes, it is possible. First of all you must create a custom link within wordpress like this-> appearance->menu->custom link: http://screencast.com/t/cwbTeaDq and in next step please try a bit of css below:

@media (min-width: 768px){
.menu-item-57 {
display: none;
}
}

Attention: Every custom link newly created has a different id and you must target this in CSS for a result. This id you can find like this: http://screencast.com/t/Nz1kracbMa7a

The result: http://screencast.com/t/812JzGp9473 http://screencast.com/t/V6fAus84ivvx

For your second request, our theme has not been designed to display view of the desktop version in mobile version.

If is not what do you want, please provide more details.

Hope this helps.

Thanks.

  • This reply was modified 10 years by Catalin.
sejpost
Participant
#0

Is it possible to add a link within the mobile menu that doesn’t appear on the desktop version of the main menu? Basically, we want to add a “sign up for newsletter’ link on the mobile menu, but we don’t want that in the main navigation on the desktop version.

Lastly, is there a way to view the desktop version from a mobile device?

Thanks.

Alin [tagDiv]
tagDiv Staff

Hi,

You can check the our demo and see how the mobile menu works – http://screencast.com/t/j13jVsaxT0i if you need another implementation I suggest to get a professional developer to help you with this as the time doesn’t allow us to provide custom work. Also the plugin you use for for menu affects the the theme as the theme has already a mobile version.

Thanks!

Bogdan B.
tagDiv Staff

Hello,

I have checked your website on multiple tablets and the top menu displays fine (maybe you got it fixed?): http://mobiletest.me/ipad_mini_emulator/?u=http://www.journaldufranc.com/
It does not overflow the line as suggested above. Please also test this on your end and provide more details if we have different results.

Thanks.

Catalin
tagDiv Staff

Hi jimmysong,

For get a transparent background, please follow the steps below:
http://screencast.com/t/bmQ9e6Cd

This steps you should follow and for top menu/main menu or mobile menu background color within Theme panel.

An exemple you can see here: http://screencast.com/t/d4qUaS9y5c5

Thanks and let us how it goes.

simplio
tagDiv Member

Also we have an issue with this http://screencast.com/t/XdTKtg0oBMu

http://www.jglobe.org/ look how the site is pulling the mobile menu above – I cant get rid of it even with css is this a plugin issue

We are also having an issue with dropdowns dissapearing in mobile menu….
http://screencast.com/t/aT1iB1DCbk9C

http://screencast.com/t/VEPdm5rOqBm

Andrei L.
tagDiv Member

Hi

1. We plan to add new post templates for Newsmag theme in future and some of them will have a similar layout with post template 11 from Newspaper. Unfortunately I can’t provide a quick solution now as this task require lots of customizations in theme’s core files. Also the new template must be tested on different browsers and devices. This customizations requires lot of time and unfortunately we can’t provide customization services at the moment. We would have gladly made it for you but we are a small team and we are working very hard on the development, updates, fixes and support.

2. I am not sure what you mean as the mobile menu have the same layout on both themes:
Newsmag: http://screencast.com/t/8zR3nuwnBVq
Newspaper: http://screencast.com/t/wyYo9FM0JN
If this is not what you mean please provide more details.

Thanks!

Bogdan B.
tagDiv Staff

Hi,

You could make the login widget appear only on the mobile version. You can hide the login with css and then force it to appear on mobile. Then make the login in the main menu disappear on mobile so you won’t have 2 logins in the mobile version. This seems the easiest way. The drop-down way involves a bit of coding knowledge and it will be no easy task. unfortunately we cannot provide custom work at the moment, you will have to hire a freelancer to do it.
I hope this helps.

Thanks.

George
tagDiv Member

Thanks for your reply Bogdan.

Your suggestion is right but when I browse from mobile login/logout link will be hidden to the menu. Rather it should to be displayed in replace of search icon in mobile view.

To be precise a drop down needs to be displayed in right top corner(mobile and desktop view)

Please let me know your thoughts.

Thanks

Viewing 25 results - 7,201 through 7,225 (of 8,091 total)