Offcanvas Spacing - Question | JoomShaper

Offcanvas Spacing

DR

doug raught

Helix Framework 4 months ago

I need to customize the spacing of my offcanvas menu items. I have found the css to edit the space between the main menu items, but I can not figure out how to edit space between the submenu items.

This is the code that I used for the main menu items: .offcanvas-menu .offcanvas-inner .sp-module ul > li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li span { padding: 20px 10px 20px 0px !important; }

The offcanvas menu is shown at: www.kidzark.com/temp

Any help would be appreciated, Thanks!

0
1 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 months ago #141248

Hi Doug,

I would use line-height not padding:

.offcanvas-menu .offcanvas-inner ul.menu > li { line-height: 30px; }

0