Search Results for 'mobile menu'

    No search results were found in Documentation!

Results from the Forum
Bogdan B.
tagDiv Staff

Hello,

The top menu was not intended to be displayed on the mobile version of the theme. We are working on fixes for the mobile menu and hopefully in a future version we will be able to provide a more complex mobile menu. Your problems with the menu originate from your custom/plugin menus. The theme was not meant to support other menus than the original ones. Adding extra menus and replacing the original ones could result in errors such as the one you described.

Thank you!

simplio
Participant
#0

We have a problem with the mobile menu on our site.

On click for some reason it shifts rt. with no dropdown.
http://screencast.com/t/OWzhlwcVEabR http://screencast.com/t/5navZldGa

http://www.jglobe.org

Bogdan B.
tagDiv Staff

Hello George,

Unfortunately if i remove the white space from the mobile version, you will no longer have the scrolling logo. It is defined in those white spaces under the main logo.
You could use this code and give up the scrolling logo for the mobile version:

@media (max-width: 767px){
.td-header-menu-wrap-full{
display:none
}
.td-main-page-wrap{
padding-top: 5px!important;
}
}

result: http://screencast.com/t/pI1XSwdlm
Unfortunately it’s either white space or no scrolling logo. This is how the menu is set up.
I hope it helps
Thanks.

firetoss
tagDiv Member

Was able to figure it out

Theme Colors > Mobile menu

firetoss
Participant
#0

Is there a way to be able to change the header background color, mobile menu and search icon so it reverses to black menu and search icon and white background header on mobile at a certain responsive point.

George
tagDiv Member

Thanks for your reply Bogdan.

First code was just perfect whilst still have trouble.

Screenshot attached:-

http://www.screencast.com/t/hWNVHTDyGSc

While scrolling in mobile, the logo is not displayed. Also the gradient border is getting disappeared.

I want to hide only mobile menu option.

PS: Is there a way I could get that gradient border below my Block 12 in home page as well.
ie: http://www.viralbae.com/home

Thanks!

Catalin
tagDiv Staff

Hi 84KcZ,

By default the theme doesn’t display the top bar on mobile devices, but you can use custom Css in Theme panel > custom css to display the top widget, like that: http://screencast.com/t/XOWNRilgrU

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

The result should see here: http://screencast.com/t/5SwmvehF1c

Thanks!

Catalin
tagDiv Staff

Hi blandRepublic,

Unfortunately, there is no option to change this from Theme panel. In theme panel you can change only the color for top bar social icons and mobile menu icons, like this: http://screencast.com/t/andjE7L3

For change the footer social icons it is necessary to use custom Css. Please try the code below and change this with color as you like. Add this code in Theme panel->Custom Css area, like this: http://screencast.com/t/BFbCLQEe4Z

.td-footer-wrapper .td-icon-font {
color:red;
background-color: green;
}

The result should see here: http://screencast.com/t/Byryi5lD

Thanks and let us know how it goes!

Bogdan B.
tagDiv Staff

Hello,

1) You can use this css for the desktop version:
.td-main-menu-logo img{
margin-left:128%!important
}

You can use the same method to apply it to the tablet and mobile version of your website.

2)You can hide it using this code:

.td-header-menu-wrap-full{
display:none!important;
}

84KcZ
Participant
#0

I cannot get the social icons, which appear in the top menu bar on a desktop, to appear on mobile devices.

George
tagDiv Member

Thank you Bogdan. That code provided the exact fix.

But I see two more issues with full logo on top option (Menu)

i) while scrolling in desktop, the logo is getting left-aligned. Ideally it should be in middle.

ii) Full logo on top option is to display only logo I believe. But I still see mobile menu icons with empty options nothing other than CLOSE link. It should be hidden completely.

Kindly advice.

Andrei L.
tagDiv Member

Hi

We haven’t tested cloudflare’s rocket loader with the theme but usually the rocket loader or automatic compression of js resources cause this. We don’t recommend using an autominify tool as this could generate js conflicts and break features that use js to function as in your case mobile menu and search did.
Please make sure you deactivate all plugins including cloudflare and cache you use, leaving just the Visual Composer active and empty all cache then purge files and check this again.

Let us know how it goes!
Thanks!

StephanusD
Participant
#0

Hi i dont know if you could advise me what to do when viewing http://www.thenewage.co.za on mobile the menu doesn’t work and the post pictures doesn’t show.

Mijaz
Participant
#0

Hello,

After upgrade my mobile site http://www.dnevne.net does not work well.
Menu does not work, search…

I use cloudflare, after upgrade I deleted cache.
I tested on iPhone.

Thanks.

George
tagDiv Member

Hi,
I came across this post to disable mobile menu. But unfortunately I’m unable to see screenshots advised by Emil G. Please can you email to georgemathew46@gmail.com or repost them.

Thanks!

George
tagDiv Member

Thank you Bogdan – It helped a lot.

I need a small css help to complete logo alignment in menu bar.

Screenshot:-

http://www.screencast.com/t/j7qUaoEAfErL

steps to reproduce:-

i) Login to http://www.viralbae.com

ii) After login it will be redirecting to homepage

iii) Site Logo is seen in top left corner.

Note: The logo misalignment issue happens in mobile only.

Kindly advice.

Thanks!

sejpost
tagDiv Member

What happens if we have more than one menu item to hide on desktop and show on mobile? Is it a separate chunk of css code for each one or can the hidden menu items be listed in a single line of code? Please show me an example of the css code for hiding two menu items so that they only appear on mobile.

Thanks!

guic
Participant
#0

Hi,

Since last update all social icons from top bar and footer are gone and now you see some japanese characters. Weird. On mobile, menu icons are just crossed boxes.
May you please explain how to fix this?
Thanks
http://guic.cat

Bogdan B.
tagDiv Staff

Hello,
Unfortunately the mega-menu option is not available on the mobile version of the theme. What you can do to achieve your desired effect is create 2 menu items with the same name and make one a mega menu and the other one a custom link. Then you can simply hide the custom link on the desktop version and hide the mega menu item on the mobile one. http://screencast.com/t/MRAfgkxu
Then you can use css to hide each one on the device of your choice.
Every menu item has a custom class called menu-item-x where x is the menu item number.
You can target these with css like so:

first one:
@media (max-width: 767px){
.menu-item-362{
display:none!important;
}
}

This is for the mobile version to hide the page menu item.
http://screencast.com/t/yoIuZn5gmS
And for the other we use the code like so:
@media (min-width: 767px){
.menu-item-363{
display:none!important;
}
}

http://screencast.com/t/thg1VSizG
Use both of these codes together in the theme panel->custom css box. You will have to adapt the code to your menu item numbers. Use the browser inspector to do this: http://screencast.com/t/JMg4UDwGJz
I hope this helps.

Thank you!

meremetia
Participant
#0

Hi,
I noticed that if I use the “load page” option for a menu item, nothing happens when i hover/click on that item in mobile mode. This is rather bad for the user experience.

I was wondering if there was a way to make it so if when accessed from desktop, the page will pop up (as it does now), but if accessed from mobile, the user is taken to that page when he clicks on the menu item…

let me know how that sounds and if there are any other turn arounds to do something like this

prkbrt
Participant
#0

My newspaper theme menu is not working in mobile phone.

Andrei L.
tagDiv Member

Hi

Try to change this class name like here: http://screencast.com/t/tddrfiUNGN then replace the above css with this one: http://screencast.com/t/VMLEdqNWbHHY

@media (max-width: 767px){
.td-icon-my-mobile:before {
content: '\2630'!important;
font-size: 40px;
}
}

Also you can use Font Awesome 4 Menus plugin which works fine with the theme, just and add this classes here: http://screencast.com/t/5xu6mROgSEA

Thanks!

Justrelaxed
tagDiv Member

Hi Bogdan,

Thanks, the CSS code for icons was a good solution.

3: Please check this img. of mobile screenshot empty space
http://s10.postimg.org/rf6rm3jc9/empty_space_mobile.png

4: I mean how to change the link color in posts. Now the linkcolor is black but text color is also black so visitors can’t see its a link :). I can only find change the Theme acces color but than also the color in menu change.

http://s1.postimg.org/44ljdwmov/link_color.png
Live: http://no.nl/kwh

Kind regards,

davidcolq
Participant
#0

Hi,

This should be a very simple thing to do but currently I can’t find anywhere in the Newspaper Theme Panel where you can change the colour of the text on the main menu header. I can change the search icon and the menu icon (on mobile) from black to white but not the text itself.

Any suggestions?
Thanks,
Dave Colquhoun
http://www.BetOTG.com

Viewing 25 results - 7,176 through 7,200 (of 8,091 total)