alderim wrote:- how can i modify/delete the grey frames around the images in the "Submenu"?
- how/where can i change the color (grey) background of the "Submenu"?
- where can i change the font-size of the submenu headlines?
This all has a single response:
Custom CSS. We can't add settings for all these things in the panel, as that is what CSS is for. If you have some experience with CSS, you can use your browsers web inspector, locate the html elements, and create custom CSS classes to change CSS styles for any specific items. If this is not something you are familiar with, then it is normally out of scope for me to explain how to do these things unfortunately. However, here is a quick example by custom CSS, but you are warned: Start changing things, and suddenly you find colors dont add up with hovers, font colors, devices.
.mega.carousel .image-container {
outline: none !important;
}
.mega.carousel {
background: tomato !important;
}
.mega.carousel h2 {
font-size: 1em !important;
}
* We use the !important attribute, because we need to make sure these classes overwrite existing styles.