Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Horizontal drop-down nav with Bootstrap addon

Home Forums Older releases 1.0.x + Bootstrap addon Horizontal drop-down nav with Bootstrap addon Reply To: Horizontal drop-down nav with Bootstrap addon

#2582
dansmartmenus
Participant

Thanks. Perhaps my bad suggesting that the default sub-menu is horizontal as I can’t find those examples now (definitely had them yesterday, I promise 🙂 ). Anyhow, I came to the conclusion that custom is the only way, so I implemented a quick proof-of-concept yesterday. It completely doesn’t work when in ‘mobile’ mode just yet, but the desktop CSS was dead straight forward – something along the lines of:

.dropdown-menu {
	left: 0!important;
	right: 0!important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

Again, this is just a proof-of-concept and not tested very widely at all but perhaps it might be a useful starting place if anyone else has this question in future.

Thanks again. 🙂