Hello,
In the store what is the main difference witth the css and advanced css?
in mega menu it seems to have padding per default around fro static block there is a way to change it in a different way than css code? Can we add color?
Where can we change the it
this css works for me
.etheme-elementor-nav-menu .nav-sublist-dropdown {
background-color: #ff0000;
padding: 0px 0px;
border: 0px;
}
For person who need this a change the categories list horizontal to vertical with css, iw vwould be nice to add this features to the theme. Categories list with no image, vertical or horizontal mode.
/* 1. Change the behavior of the main container */
.elementor-widget-etheme_categories_lists .categories-grid {
display: block !important; /* Disables the current flexbox */
column-count: 4; /* Forces 4 vertical columns */
column-gap: 30px; /* Space between the columns */
}
/* 2. Ensure that elements are not split/cut between two columns */
.elementor-widget-etheme_categories_lists .category-list-item-wrapper {
display: inline-block; /* Necessary for the columns to work properly */
width: 100%; /* Takes up the full width of the column */
break-inside: avoid; /* Prevents an item from being split in two */
page-break-inside: avoid; /* Additional fallback support for older browsers */
margin-bottom: 10px; /* Small space under each item */
float: none; /* Failsafe in case there are floats applied */
}
/* 3. (Optional) Adjustment for Mobile and Tablet */
@media (max-width: 1024px) {
.elementor-widget-etheme_categories_lists .categories-grid {
column-count: 2; /* Switches to 2 columns on tablet */
}
}
@media (max-width: 767px) {
.elementor-widget-etheme_categories_lists .categories-grid {
column-count: 1; /* Switches to 1 column on mobile */
}
}
By the way the theme seems to have a very agressive cache is it possible, we don’t have any cache plugins installed on the site right now and a lot of stuff need lots of time to change, and something long to see also on incognito, can me make it it more sensible on chnages?