Call button in nav bar mobile

Hello

  1. How can I make the call button in the nav bar for mobile? right now it is in the menu on mobile but I would like it to be next to the hamburger menu on the left side of it.

  2. when I click on themed maps I have to click the arrow for it to drop down the sub menu. I do not want themed maps to be a page, but is there a way to make It drop down the menu on mobile clicking the word not just the little arrow?

  3. also when the menu opens and there is a sub menu I noticed the sub menu is not centered. How can I fix that?

Have a great day.
thanks!

also how can i make the phone in the menu red?

thanks

Hi There,

Thanks for writing in!

Can you please send us your website URL so that we can suggest you better.
The website pointing to your license is under construction mode.
As I can see you have an X license and the feature you are looking for need custom coding. Unfortunately, that is not possible X without custom coding which is beyond our theme support scope.
If you can send us the URL or logins so that we can check and give you a proper suggestion.

Thanks

Sent you a secure note

Hi Justin,

Thank you for writing in, 1 and 2 is not a native feature of X, it is possible with PRO or customization however customization is outside of the support that we can offer.

  1. Please add this to Theme Options > CSS
@media (max-width: 979px) {
	.menu-item-has-children > ul {
	margin-left: 0 !important;
}
}

Add this to Theme Options > CSS as well.

.menu-item-228 a {color: red !important;}

Cheers!

how can i make the spacing in between the sub menu items closer

Hi There,

Please try adding this custom CSS under Theme Options > CSS:

body .desktop .sub-menu a {
    padding-top: 3px;
    padding-bottom: 3px;
}

Hope it helps :slight_smile:

Sorry i meant for the mobile sub menu

Hi Justin,

Sure, please change that CSS to this


body .mobile .x-nav li > ul a {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}

Cheers!

thanks so much

You’re welcome.

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