Site logo

Archived topic

Dropdown problem

7 replies · Started by Ricardo on October 19, 2018

Viewing posts 1–8 of 8

I have 2 issues with the dropdown.

1. I need the dropdowns on the slideout menu (on mobile) to show the sub-menu by clicking on the entire menu item not just the arrow.

2. In the main page of the website is very hard to to use the the dropdown on the main navigation, I think is not working properly because it dissapears right away when trying to enter the submenu.

3. In the sticky navigation my navigation itemns are not on the center. I will like to fix this aswell.

Thanks in advance for the provided answers.

https://di-domenico.com/.

Hi there,

1. Create the parent menu items as custom links, and set their URLs as: #

2. Any chance you can open up your site so I can see? Sounds like a z-index issue maybe?

3. Same as the above - I'll need to see your site to give you the necessary CSS :)

Thanks for your answer Tom. Yeah I forgot about that, i already activated the website so you can see. Let me know

It seems your dropdown is set to open on click, which is working. Was it hover that wasn't working?

As for the logo, try this CSS:

.sticky-menu-logo .navigation-stick:not(#sticky-placeholder) .navigation-logo {
    float: none;
    display: inline-block !important;
}

Yeah I change it to open on click due to it was very stresful not being able to click on the dropdown. Although this issue only happened on the home page.

So the issue here is this CSS:

.fl-node-5b8c6206401ac .uabb-image-carousel {
    margin: -10px;
}

If you set that margin-top to 0, it will work.

If there isn't a setting for that, you can try this CSS:

.fl-node-5b8c6206401ac .uabb-image-carousel {
    margin-top: 0;
}

Thank you very much Tom. I wasn't home couldn't make the changes. I already did them and all worked out just great!
Except for the logo in the sticky nav, but your answer gave me an idea so I did this.

.sticky-menu-logo .navigation-stick:not(#sticky-placeholder) .navigation-logo {
	position: absolute;
}

So that was it! Thank you!

Awesome, you're welcome :)

This archived topic is closed to new replies.