Menu Colors - Question | JoomShaper

Menu Colors

I

ixhault

Template 1 month ago

Need assistance changing the menu color and background color, of both desktop and mobile menus. I've attached two screenshots of the colors I am looking to change them to.

Here is the website:

https://equitysportsagency.com/home/

To get the mobile version, you will have to shrink the browser down, so the menu collapses and the hamber menu is visible.

https://www.equitysportsagency.com/home/home%20page.jpg

https://www.equitysportsagency.com/home/Mobile%20Menu.jpg

Please help.

0
6 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 month ago #151083

Hi

Thanks for contacting us. Use this custom CSS in your custom.css file

.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span, .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a{
  color: #d5ba70 !important;
}
.offcanvas-menu .offcanvas-inner{
  background-color:black !important;
}
.offcanvas-menu .offcanvas-inner .sp-module ul>li a, .offcanvas-menu .offcanvas-inner .sp-module ul>li span{
  color: #d5ba70 !important;
}

-Regards.

0
I
ixhault
Accepted Answer
1 month ago #151269

Good day Mehtaz Afsana Borsha,

Thank you so much for helping me make those changes. I have a question on the mobile offcanvas menu. Can you add to the code to modify this last piece of the menu please?

Please see the link below for my outline.

https://www.equitysportsagency.com/mobile_menu.jpg

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 month ago #151278

Ok for that please use this custom CSS

.offcanvas-menu .offcanvas-inner .sp-module ul>li.active>a{
  color: black !important;
}

.offcanvas-menu {
    height: auto !important;
}
0
I
ixhault
Accepted Answer
1 month ago #152806

Good day,

Thank you so much for helping me with my website code. My client has one more request, is it possible for you to send me the code to make the menu (mega and offcanvas) a gradient utilizing the following colors

From the Bottom of the text upward

987439

ceaf5c

f2e19a

In essense, I'm tying to have the menus text color mirror the "Patrick Mahomes" Text color in the banner. Can you assist.

https://equitysportsagency.com/home/

0
I
ixhault
Accepted Answer
1 month ago #152805

Good day,

Thank you so much for helping me with my website code. My client has one more request, is it possible for you to send me the code to make the menu (mega and offcanvas) a gradient utilizing the following colors

From the Bottom of the text upward

987439

ceaf5c

f2e19a

In essense, I'm tying to have the menus text color mirror the "Patrick Mahomes" Text color in the banner. Can you assist.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 month ago #152926

Hi

You can use this custom css

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    background-image: linear-gradient(#987439, #f2e19a) !important;
}

But for more accurate please follow these links below:

https://www.w3schools.com/colors/colors_gradient.asp

https://mycolor.space/gradient3

0