Hi,
Helix Ultimate Optional Main Menu Icons Issue
Icons display as expected on the homepage.
When opening a link targeting a page made with "SP Page Builder," icons show as expected.
When opening a link targeting a page in "Joomla Articles" or "Hikashop," icons do not show as intended and instead display a number (FO23, FI07, FO7A, etc.).
Helix Ultimate Sub-Menu Issue
Sub-menu items targeting links to pages made with Joomla Articles or Hikashop display in lowercase or whatever format is input in the sub-menu itself.
Sub-menu items targeting links to pages made with SP Page Builder always display in uppercase and bold, regardless of the format input in the menu itself.
I didn’t find any other options other than correcting the issue using the following custom CSS. It seems to work, but thanks for confirming if the syntax is correct and if there is another way I missed.
.sp-dropdown-inner .sp-mega-group .menu_item a {
text-transform: lowercase !important;
}
.sp-dropdown-inner .sp-mega-group .menu_item a::first-letter {
text-transform: uppercase !important;
}
.sp-dropdown-inner .sp-mega-group .menu_item a {
font-weight: normal !important;
}