Hi,
Appreciate you’re having issues with version 7.3 on the mobile theme but I’m running v 7.2 and the mobile menu links don’t work? They don’t display the pages properly. The website is http://www.musicinstrumentnews.co.uk
Hope you can provide some insight to the problem?
Thanks
-
This topic was modified 10 years by
Music Instrument News.
Hi
I’ve checked your site and the links form mobile menu works fine on my end. If you still have this issue try to deactivate all plugins except Visual Composer, clear all caches then test the site again.
Let us know if you need further assistance on this.
Thanks!
Hi,
Thank you for your reply. I tried that and it didn’t work. The links in the menu go to the pages but none of the content appears. It just shows the header and the footer on every page. I’ve tested on multiple devices and it’s the same problem.
Happy to let you log-in if that helps?
Thanks.
Hi,
I decided to deactivate the mobile theme and now the pages are working properly. If I wanted to change the Menu background and header colours, where would I find the CSS for this? Many Thanks
Hi
The selector which holds mobile menu background is .td-menu-background:before so you can use it to change the gradient as you want. The gradient color can be generated using an online tool, here is a css example made with http://www.colorzilla.com/gradient-editor/ – http://screencast.com/t/Ik0xn1biwP
.td-menu-background:before {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d0e4f7+0,73b1e7+24,0a77d5+50,539fe1+79,87bcea+100;Blue+Pipe+%231 */
background: #d0e4f7; /* Old browsers */
background: -moz-linear-gradient(top, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0e4f7', endColorstr='#87bcea',GradientType=0 ); /* IE6-9 */
}
Thanks!