Megamenu are In Capital - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Megamenu are In Capital

R

Robert

Helix Framework 2 years ago

Hi,

created a megamenu for the subpages. The megamenu items don't show hover effect and the letters are all in capital.

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #107160

Hi Robert,

  1. What template?
  2. If you used module inside MegaMenu styles for menu items from template may not be used there.
  3. Probably it was designed to be like that, and only via custom CSS you can change it. For example:
.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  text-decoration: none;
  text-transform: none;
}
0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 2 years ago #107163

Hi

Thanks for contacting us. Could you please share your site URL and also screenshot of your issue?

-Regards.

0
R
Robert
Accepted Answer
2 years ago #107175

https://ibb.co/jh06T0j

Hi screenshot. All capital letters and no hover effect

text color =#545454 hover should be= #c9001e

It's Helix Ultimate used with SPPB3

0
R
Robert
Accepted Answer
2 years ago #107190

OK, this is ok now, only the hover color missing now

.sp-megamenu-parent .sp-mega-group>li>a {
    display: block;
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

ok now when with this:

.sp-megamenu-parent > li.active > a, 
.sp-megamenu-parent > li.active:hover > a,
.sp-megamenu-parent .sp-mega-group > li > a:hover
{color: #c9001e !important;}
0