How is it possible to change the Mega Menu settings? For example how can the menu-button layout be changed?
ltheme
POSTED: 2016-04-13
Hello PAGEMAKING,
There is no settings to control style for menu unfortunate.
But if you can send me your site address, and let me know which color or style you want to apply for your menu (such as Selected/Hover effect, background menu bar, etc), so I can help.
Thank you,
pagemaking
POSTED: 2016-04-13
Thanks! Its http://schmitt.devpm.de.
When hovered or active I´d like to have a border around the menu item and different text color if possible.
Thanks a lot!
ltheme
POSTED: 2016-04-14
Hello PAGEMAKING,
Please open file 'template.css' located in folder 'css' of template and search for
I got two menus on my page. The first one (main menu) is displayed at the top. The other one on the left side on the page, which is displaying all the submenu items from the main menu. This works fine. But there is still the Dropdown menu (submenu items from the main menu) activated. How can I deactivate displaying the dropdown-submenu items?
ltheme
POSTED: 2017-02-17
Hello PAGEMAKING,
can you send me your site address to check?
pagemaking
POSTED: 2017-02-17
http://elektro-freitag2.devfreitag.de
ltheme
POSTED: 2017-02-18
Hello PAGEMAKING,
You go to Template Settings, open tab 'Custom Code' and add more CSS below in Custom CSS code field
thanks for the Code!
Unfortunately the submenu items are still displayed after saving the custom css. Only the arrows disappeared.
May you have another idea?
Thanks in advance!
Thanks for the quick Response!
...but the submenu-items are still visible..
pagemaking
POSTED: 2017-02-20
Another question..
I implemented a sidemenu and assigned it to a few pages.
There is no list style defined.. is there a possibility to Show a small Icon in front of the menu items?
Thanks a lot.
pagemaking
POSTED: 2017-02-20
Hello again,
I was able to solve the problem with the submenu-items at the top. I inserted "Display: None; !important" at template.css (r. 844).
Get an access to all 265 items designed and developed by LTheme team plus all the future items
which will be released over the course of your club subscription.
Price starting from $69.00
There is no settings to control style for menu unfortunate.
But if you can send me your site address, and let me know which color or style you want to apply for your menu (such as Selected/Hover effect, background menu bar, etc), so I can help.
Thank you,
When hovered or active I´d like to have a border around the menu item and different text color if possible.
Thanks a lot!
Please open file 'template.css' located in folder 'css' of template and search for
.sp-megamenu-parent > li > a {
color: #000;
display: inline-block;
font-size: 20px;
font-weight: 500;
letter-spacing: 1px;
line-height: 90px;
padding: 0 47px;
}
and replace to
.sp-megamenu-parent > li > a {
color: #000;
display: inline-block;
font-size: 20px;
font-weight: 500;
letter-spacing: 1px;
border: 1px solid #f1f1f1;
padding: 20px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}
.sp-megamenu-parent > li > a:hover, .sp-megamenu-parent > li.active > a {
background: #3d449a;
color: #fff!important;
}
Save and recheck.
can you send me your site address to check?
You go to Template Settings, open tab 'Custom Code' and add more CSS below in Custom CSS code field
.sp-megamenu-parent >li >a {
font-size: 120%;
}
div.sp-dropdown.sp-dropdown-main.sp-menu-right {
display: none;
}
.sp-megamenu-parent >li.sp-has-child>a:after {
content: inherit;
}
Save and recheck.
thanks for the Code!
Unfortunately the submenu items are still displayed after saving the custom css. Only the arrows disappeared.
May you have another idea?
Thanks in advance!
Just make this css with "important"
div.sp-dropdown.sp-dropdown-main.sp-menu-right {
display: none!important;
}
...but the submenu-items are still visible..
I implemented a sidemenu and assigned it to a few pages.
There is no list style defined.. is there a possibility to Show a small Icon in front of the menu items?
Thanks a lot.
I was able to solve the problem with the submenu-items at the top. I inserted "Display: None; !important" at template.css (r. 844).
But I still got no solution for the liststyle..
Please add more CSS below
.sppb-section .nav>li:before {
content: ">";
float: left;
margin-top: 10px;
}
Thumbs up for this awesome Support!
You're welcome!