Superfly Submenu items

Hello!

I am using Superfly menu on mobile devices and I am wondering two things.

  1. Is it possible to start with the submenu items expanded?
  2. How do I change the styling on the submenus? Now they just look exactly the same as the main items in the menu.

Thanks for a superb theme with Pro…it is truly amazing!

/Tomas

Hi @tomaspernek,

Thank you for reaching out to us.

  • This can be possible with custom development or modifying the plugin’s core files but this would be out of the scope of our support. However you can try out the following CSS but this won’t function properly as there is no easy way to handle this:
#sfm-sidebar.sfm-vertical-nav .sfm-has-child-menu .sfm-sm-indicator {
    display: none;
}
#sfm-sidebar .sfm-has-child-menu > .sfm-child-menu {
    display: block !important;
}
  • To change the sub menu styling, try adding the following code in the Theme Options > CSS:
.sfm-nav .sfm-child-menu {
    background: #464444 !important;
}
.sfm-nav .sfm-child-menu li a {
    font-size: 13px !important;
}

Also see it’s documentation for further assistance http://superfly.looks-awesome.com/docs/Customize/Customize_Appereance_on_Mobiles

If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.

I recommend you to watch following video that will help you to get started with CSS.

https://www.youtube.com/watch?v=MFR4WXiLzpc

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.