aman204
I checked with my provider, everything is OK.
I tried to investigate a little bit, and with developer tools I found out that this part of the code, messing up the whole thing in "_navigation.less".
// Styles on Breakpoint
@media only screen and (max-width: @grid-float-breakpoint) {
background: @grayDark;
// Compatible for j4
[class*="span"] {
width: 100%;
}
}
[http://prntscr.com/kj9ilg]
And when I edit directly in dev tools (ex. width:90%), menu appears.
[http://prntscr.com/kj9jy6]
But then, i edited "navigation.less" on the server and I still having 100% on dev tools, even if I have 90% in file.
Then, I edited same part of code in template.css, to 90% and finally get menu button for mobile devices. But now have problems with the size of the button, depending on different resolutions.
I tried to apply part of the code to custom.css, but without success.
Is there another way to get it done, since I want to keep original files, regarding future upgrade?
Thanks in advance!