Please see the screenshots below. How do I hide the mobile menu hamburger icon in desktop view mode?
I saw this post https://www.joomlart.com/forums/d/26576-mobile-menu-icon-always-display-in-desktop-mode but unfortunately the screenshot is no longer there.
Also, under TEMPLATES > EDIT STYLE > LAYOUT > LARGE/MEDIUM, the off-canvas module is not there. So I can't turn it off.
I am using the JA Company profile. And in the demo site, it is working properly. The mobile menu icon is hidden in desktop view. I have searched through all the posts in this discussion board but unable to find a solution.
@media(min-width:768px) {.off-canvas-toggle {display:none; }}
OK. I finally found a post with the answer. Add the above code to templates/ja_xxxxxxx/css/custom.css. If custom.css is not there, just create it.
Your solution is correct, you can use that.
An alternative is disabling in template >> Layout >> Responsive layout >> Large / Medium >> set to hide Off-canvas
saguaros You can see in my screenshot above that the Sidebar off-canvas module is not there. That is why I can't turn it off.
Although I have solved my problem, I really would like to know why the sidebar off-canvas module is missing.
saguaros Is it safe to post the Joomla login in the login info field when creating a new message? I guess it is visible to the moderator only? Perhaps you may log in and take a look why the off-canvas module is missing.
You can open the file:
/plugins/system/t3/admin/layout/css/layout.css
At approx line 388:
.t3-off-canvas { position: initial; right: -240px; top: 0; width: 220px; background: #f2f2f2; padding: 0 12px; }
change to position: initial like above
saguaros Thanks. That works! The off-canvas module is showing and I can now turn it off from here. This is better than editing the custom.css file.
Glad to hear that!