Customize Font Of The Off Canvas Menu - Question | JoomShaper

Customize Font Of The Off Canvas Menu

K

Kuddel

Helix Framework 1 year ago

Hi there, How can I customize the font (and its attributes like size, color ...) of the individual menu levels in the off canvas menu? Thank you for a solution

0
3 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #148737

Hi Kuddel,

If you have raw Helix Ultimate template go here: https://www.joomshaper.com/documentation/helix-framework/presets

And find section About Offcanvas menu.


About Font-Family and Font-Size: Template Options > Typography > Custom > Custom Selectors - paste:

.offcanvas-menu .offcanvas-inner ul.menu > li a, 
.offcanvas-menu .offcanvas-inner ul.menu > li span

And then set font settings > Save settings

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #148738

And yes, using Custom CSS you can do anything, useful class names:

.offcanvas-menu .offcanvas-inner ul.menu > li a  { ... }

.offcanvas-menu .offcanvas-inner ul.menu li.active a  { ... } 

.offcanvas-menu .offcanvas-inner ul.menu > li a:hover  { ... }

.offcanvas-menu .offcanvas-inner ul.menu > li li a { ... }

I hope you know CSS Basics.

0
K
Kuddel
Accepted Answer
1 year ago #148740

Hi Paul, thank you very much, that was what I was looking for. 👍👍👍

0