Hey guys. I upgraded from 2.9 to 3.4 and I must say you guys are doing a really great job. Congratulations!!!
And one of the things I liked the most was the possibility of being able to edit CSS directly in the admin panel.
A tip that I'll pass on to my friends here is to make it easier for store owners to navigate when inserting and editing items, add-ons and their categories.
Before, we would have to go to the files and comment out the line
<a href="#" class="header-elements-toggle text-default d-md-none"><i class="icon-more"></i></a>
and then remove the d-none class on the line
<div class="header-elements d-none py-0 mb-3 mb-md-0">
But with CSS it is much easier. See what I did:
@media (max-width: 767px) {
.header-elements-toggle {
display: none;
}
.d-none {
display: block !important;
}
}
By doing this, you don't have to click so that the buttons for adding add-ons, items and categories are always visible.
from:
to: