Search Results for 'mobile menu'

Results from the Forum
modaestrat
tagDiv Member

PS importantly, I would like the image to also display in mobile similarly, without reverting to the mobile logo that is within the navmenu bar, but rather appear beneath it. (see the way the website example above responds in mobile)

modaestrat
Participant
#0

I was curious if there is a method to have a larger fullscreen logo, The tagdiv recommended size when used full width (no side banner) looks good on mobile but much too small on regular desktop browsers. Is there a way to select a different logo for each screen? Can you implement this function to future releases so I can avoid using a child theme?

Also, I am curious as to using a full screen header photo in place of logo such as this: http://thedianerehmshow.org/ (but as a rectangle, without the cut out space you see on this site).

How can these best be implemented?

If one does not use the banner ad, or align the logo next to the menu, the logo just doesn’t very good at recommended sizes.

eddien
Participant
#0

Hi

I use Open Sans Hebrew font which was applied everywhere in the Theme Panel.
However, while in desktop all is ok, in mobile, the font of sub title of posts in the main menu only page is still the default one.
Have tried to add font plugin but the problem remained the same.

Eddie

Lucian
tagDiv Staff

Hi,

I have investigated this and seems that the mega menu feature it bound by the header menu id that is why the menu breaks, changing it is not simple and you would need additional customization besides changing the menu id.
You could try to add menu items for both you menu then use css to hide the ones you want only on mobiles on desktop and reverse.
Sorry for the inconvenience!

Thanks

wishdigital
tagDiv Member

thanks for the reply. I can’t share my url, here are screenshots

before – menu works (its loading in page content in this screen shot)

https://dl.dropboxusercontent.com/u/41174/Screen%20Shot%202015-01-29%20at%209.53.48%20AM.jpg

after setting theme_location to my custom_menu in /menu-mobile.php – mobile menu changes as desired but main nav mega menu dropdowns do not load (and are not being output in the html code), and other stuff like the padding doesn’t seem to apply.

https://dl.dropboxusercontent.com/u/41174/Screen%20Shot%202015-01-29%20at%209.54.51%20AM.jpg
https://dl.dropboxusercontent.com/u/41174/Screen%20Shot%202015-01-29%20at%209.57.04%20AM.jpg

Alin [tagDiv]
tagDiv Staff

Hi,

1&2 Search on mobile view: http://screencast.com/t/Gjz1QtC4zwA

@media (max-width: 767px){
#td-top-search {
top: 0px !important;
right: -56px !important;
}
.header-search-wrap .dropdown-menu{
right: -277px!important;
}
.header-search-wrap .dropdown-menu:before{
left: 32px!important;
}
.header-search-wrap .dropdown-menu .btn{
right: 269px!important;
}
}

3. I see that you managed to solve that: http://screencast.com/t/pKRV7x9KSv

wishdigital
Participant
#0

I want to assign a different WP menu to the mobile menu instead of the default main menu.

I have registered a new nav menu location in my child-theme functions and assigned my new menu to the location. I copied /parts/mobile-menu.php to my child theme and edited ‘theme_location’ to my new menu location name.

This works in that it shows my new mobile menu in the mobile view, but at the same time it breaks the main menu’s mega menu features.

Any advice? Thanks.

Alin [tagDiv]
tagDiv Staff

Hi,

You can change header style to “Blog style – full text logo + menu” and I think that there wont be issues on moblie view. Any if you want to use Style 3 you can use this custom css:

To hide the main menu and place the search button on top for mobile view: http://screencast.com/t/Q2PImmCmYDWG

@media (max-width: 767px) {
#td-top-menu .sf-menu {
display: none;
}
.blog-stack #td-top-search{
right: -50px;
top: -75px;
}
.header-search-wrap .dropdown-menu {
left: -56px!important;
}
}

For tablets please use this custom css in Theme Panel > Custom Css: http://screencast.com/t/vMf2QV8vpxMx

@media (max-width: 1018px) and (min-width: 768px){
.blog-stack .sf-menu > li > a{
padding: 0px 5px 0px 5px;
}
.blog-stack .sf-menu a.sf-with-ul {
padding-right: 25px;
}
.blog-stack .sf-menu > li > a{
font-size: 12px;
}
}

Hope this helps!

Thanks!

frubun
Participant
#0

Hello

I am having some issues the top menu of http://frubun.ro/ is shown on 2-3 lines on mobile phone or tablets.

Could you please help me

Thank you

Sergiu

Lucian
tagDiv Staff

Hi,

You can try to set you header to header style 3 then use the custom css from below to get this result: http://screencast.com/t/WPtJGwplM

@media (max-width: 767px) {
.td-menu-wrap #td-top-menu {
display: block !important;
}

#td-top-mobile-toggle {
display: none !important;
}
#td-top-search {
width: 40px;
position: absolute;
top: 0px;
right: 16px;
}
.header-style-3 .td-logo img {
position: initial !important;
width: 180px !important;
}
}

Please also note that the main menu hasn’t been designed to be used on mobile screens so you might need additional customization to it.
Regarding the second questions, in the customization above I have removed the mobile menu button as I believe you don’t need it anymore.
The icons is added using the background-image property via css: http://screencast.com/t/k6hyD03kHex You can also alter tit via css and change it or enlarge it.

Thanks

nedb
Participant
#0

Hi, instead of using the default mobile menu, is it possible to use the regular navigation instead(condensed down of course)? I only have 4 menu items I would like to include on the mobile version, and the current menu button doesn’t really stand out.

As a second option, is it possible to increase the size of the current mobile menu button? or to change the graphic?

Thanks!

nedb
Participant
#0

Hi,

When you view my website on your mobile device, the menu does not work. I’ve tried some of your other suggestions for people with similar issues, but I still cannot get it to work. My site is nedirtbikes.com.

Lucian
tagDiv Staff

Hi,

The logo issue you have is because you use a large logo img and which on mobile screens id set to a 180px width and behaves as in your case.
You can adjust it and make it look better via css, like this: http://screencast.com/t/vrjChmttUD67
You also need to remove or change the header color, use the css below and set the color as you like. It will have to be different form blue because the logo is also blue and different from white because the menu icon and search icon are also white.
You can also set the menu color to black from theme panel: http://screencast.com/t/nUvQUIFd

@media (max-width: 767px) {
.td-boxed-layout .td-menu-placeholder .td-menu-background .td-menu-wrap {
background: red !important;
}
.header-style-3 .td-logo img {
width: 380px !important;
top: -1px !important;
}
}
@media (max-width: 500px) {
.header-style-3 .td-logo img {
width: 300px !important;
top: 5px !important;
}
#td-top-search {
right: -40px !important;
top: -57px !important;
}
}
@media (max-width: 400px) {
.header-style-3 .td-logo img {
width: 250px !important;
top: 8px !important;
}
}

The itemprop="interactionCount" meta tags are added and used for the comments counter from modules: http://screencast.com/t/MgwNRmvLQLzi
To remove it please comment this line: http://screencast.com/t/3iTGxtlTs

Thanks

Lucian
tagDiv Staff
Lucian
tagDiv Staff

Hi,

The menu is showing those duplicated items because you have set them to use the mega menu which by default it displays the subcategories of a category and you’ve also set the subcategories as sub items which is not necessary when using mega menu so you can noticed that you gave the same issue as on mobiles on desktop also: http://screencast.com/t/ptRri7ezfT
You need to remove this ones: http://screencast.com/t/RPRkEEFlnkdD from appearance > menus panel leaving just the category set to use the mega menu: https://forum.tagdiv.com/how-to-use-the-megamenu/

Thanks

  • This reply was modified 11 years by Lucian.
Ankush Das
Participant
#0

Hey my site is https://www.techlegends.in But i am getting double menu options while browsing through mobile. But the desktop version is fine.

SenhorCabo
Participant
#0

Hi,

I have a small problem with the menu.
When I view it on mobile, the menu toggles to the mobile version which is great.

The problem I’m having is when viewing the website on an Ipad, the menu does not change to the mobile version and the menu drops to two lines, which does not look so great.

I had a feeling there was a problem with the toggle, that the width is too small but I can’t seem to find the file to change.

Please let me know if you could help me?

Kind Regards
Tyron Frahm

Thanks so much

http://senhorcabo.com/

JohnRedick
Participant
#0

When I go to my site on my phone, the menu doesn’t do anything.

http://www.FixYourDirtBike.com

kicks to

http://www.FixYourDirtBike.com/#

Is there something I need to change in the theme panel?

Thanks

lecker
tagDiv Member

And one more thing, how can I show different ads for mobile and desktop? The toggles in the Ads menu are not working for some reason or another for custom ads.
I used a custom php code found here to add a banner to my footer, but it’s size varies, so I want to add different sizes to mobile and desktop using the custom ad panel. Like I said before, the toggles don’t have any effect, the banners are showing everywhere no matter what I disable via the ads menu.
Thank you.

soumitmis
Participant
#0

I have opted for style 1 (logo-image + ad + menu) for header. I want the logo at the Centre in header in the mobile and tablet versions in the sequence of menu + logo + search icon.
Also, the menu drop down window is too wide, how to reduce the width? How to add bgcolor to the same window? Is it possible through CSS. Please help what should be the CSS code.
Thanks for your help.

Alin [tagDiv]
tagDiv Staff

Hi,

Theme was designed to not show top menu on mobile view and there is no option for this.
Please use this custom css: http://screencast.com/t/BYx45vKqIg

@media (max-width: 767px){
.td-header-menu-wrap {
display: block;
font-size: 11px;
}
.top-header-menu, .td-header-menu-wrap .menu-post-and-page-settings-container .menu {
margin-left: 0px;
}
.top-header-menu li a, .td-header-menu-wrap .menu-post-and-page-settings-container .menu li a {
padding: 0px 2px 0px 2px;
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you want more subcategories to appear on mega menu please edit td_menu.php and change this value: http://screencast.com/t/8W8tr3V6f and for mobile: http://screencast.com/t/Qbh8JUaENhX

Result: http://screencast.com/t/9RJ0GGRJsLz

Thanks!

vtmommies
Participant
#0

How do I get my Top Menu to appear in mobile? The main menu is there, but the important stuff for mobile clients (contact info, ad rates, etc.) is all in my top menu.

VTMommies.com

Thanks!

Lucian
tagDiv Staff

Hi,

I have checked your site and noticed this js errors in your console which can cause this as the mobile menu works based on js: http://screencast.com/t/bxcc6028AbuB
Please try to check this without any other plugins active lave just the Visual Composer plugin active, empty cache and also purge files if you use any CDN host services and check again. Enable plugins one by one afterwards to find the one that is causing this issues.
Please let me know!

Thanks

costudio
Participant
#0

Hi,
similar to your Newsmag demo website, the icons on the main menu (down arrows indicating dropdowns to the right), social icons and mobile icons are not showing, this seems to be an issue with the ‘Newsmag’ font/css not displaying the icons for some reason, how can I fix this?

http://demo.tagdiv.com/newsmag/

Allan

Viewing 25 results - 7,601 through 7,625 (of 8,091 total)