How to disable numbering in the menu | Cuisine - Documentation | JoomShaper

Cuisine

Updated Last: 07 October 2019

How to disable numbering in the menu

How to remove numbering in the fancy menu

It's very easy you have to use only one line of custom CSS:

.sppb-addon-fancy-menu .sppb-addon-content ol > li { list-style: outside none none; }

How to remove numbering in the classic menu

it's possible but request small customization.
1) Open in editor: templates\shaper_cuisine\sppagebuilder\addons\classic_menu\site.php
2) Find line 83, with following code:

$output .= '< h4 >' . ( $key + 1 ) . '. ' . $item['title'] . '< /h4 >';
where you have to remove only this part: . ($key+1) .

3) Save changes (and upload changed file to server)