Hi Jörg,
Thanks for reaching out to us.
You can control both the font sizes and the submenu arrow direction using custom CSS.
🔤 Font sizes (Off-Canvas menu)
Add the following to your custom CSS:
.offcanvas-menu .menu a {
font-size: 1.5rem;
}
/* First level submenu */
.offcanvas-menu .menu .menu-child a {
font-size: 1.4rem;
}
/* Deeper submenu levels */
.offcanvas-menu .menu .menu-child .menu-child a {
font-size: 1.3rem;
}
➡️ Change submenu arrow direction
To adjust the arrow direction, use:
.offcanvas-menu .menu-toggler::after {
transform: rotate(90deg);
}
You can adjust the rotation as needed:
* 90deg → right
* 0deg → down
* -90deg → left
Let me know is it help or not.
Best Regards,