How to change the menu strike-through?
To change the strike-through into an underline, add the following code to Appearance > Customize > Additional CSS:
.qodef-main-menu>ul>li>a>span.item_outer .item_text:after, .qodef-main-menu>ul>li>a>span.item_outer .item_text:before { top: calc(100% - 1px) !important; }
To remove the line altogether, add the following code instead:
.qodef-main-menu>ul>li>a>span.item_outer .item_text:after, .qodef-main-menu>ul>li>a>span.item_outer .item_text:before { display: none !important; }