how can create custom menu side in bootstrap or foundation? [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
hi there how can create a custom sidebar menu in bootstrap or foundation
exact like this site:
http://zurb.com/word
I found one in here via boostrap.
enter link description here
it's like first one but it open over page. I want body be resize (not hidden or overflow)
another example is w3schools.com menu side.

The bootstrap one IS resizing the page when you click the button at the top. It only covers the page when you hover. To get exactly what ZURB.com is doing, you can use the bootstrap template that you linked, and add some jquery like this: (I got this jquery by modifying the sidebar js file form the bootstrap page that you linked.)
$("#sidebar-wrapper").hover(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled-2");
$('#menu ul').hide();
});

Related

Need help to achieve html/css textbox hover effect [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 days ago.
Improve this question
I need some help with achieving hover effect with black textbox using html and css as below google search example. Pls advise
enter image description here
I have tried using title tag for mouse over effect but i like to achieve the same look as google search page
this little hover effect can be made in js I think
look after modal in javascript.
Basically. you hard code this textbox in HTML then you add a class on it with a display:none to hide it.
Then with javascript you add / remove this class when the user click in the input ( focus mode). when the class is added, then display:none is active so the modal is hidden. when the class is removed ( when the user focus the input form) the modal appear.
At least this is how i would do it.
https://www.w3schools.com/howto/howto_css_modals.asp should help

Dropdown menu won't appear in elementor Wordpress [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
The dropdown menu in my main menu (desktop) will not work when clicking on it. The dropdown menu (mobile), which is the entire menu, won't appear at all when clicking on the hamburger menu icon. Why won't it appear?
I've already tried changing the z-index of the header using some code I got from other questions and answers. I don't know how to code so I'm not sure I did it right, and the z-index may still be an issue.
I am using Wordpress and the Elementor plugin to build my website. The theme I am using is called NeoTech, built by DeoThemes. My website is buenavistamag.com.
I just want the dropdown menus to work so my visitors can navigate my website properly. Can anyone help?
Your dropown menu is working but not showing. Because, you need to remove overflow:hidden from header element.
From my observation, you have created the menu. Invoke your menu options in menu editor via Appearance>Menu tab in WP-Admin
SampleForDropdown

Implement Bootstrap Nav Bar on Own Site [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Was wondering if there was a simple way of implementing the navbar from this site onto my website. I have tried copying the source code from the html file to my page, and linking the bootstrap.min.css file to my site's html page, but I cannot get the navbar to work. The button's image doesn't come, and, when clicked in the place the button would usually be, the navbar doesn't show.
Is there a simple way of putting this into my site, without copying useful and non-useful source code onto my page and hoping it would work?
Could someone please highlight the code that I would need to copy to my site, for this to work?
Thanks
It's not enough just to link the bootstrap.min.css file to make Bootstrap work. You'll also need some scripts: bootstrap.min.js is a must and you're probably going to need JQuery as well.
Also, be sure to link to the bootstrap.min.css file from that template, which could be a modified version of Bootstrap's original template.

CSS - dynamic menu image [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I'm planning a website and wondering what the best way to create the following item is in CSS:
I want a triangle to appear beneath an item in the menu bar, but the horizontal position of the triangle will change depending on which page the user is currently on (it will highlight the currently viewing menu item)
Is there a way to do this dynamic positioning with just CSS?
All you need to do is download Bootstrap, and create a >div element for your navbar, which you probably already have. Then you need to identify each list item in all your navbar pages as >active, so it gets similar highlights to that of what you want.
To add triangles, you'll need a special CSS class or a downloaded theme.

Main Menu responsive issues [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I was working on this site for its mobile responsivenes.after a few css edits I managed to make it responsive.I tested in different browsers.its working fine but not in mozilla firefox.when we scroll down to the bottom of the page it shows a horizontal scrollbar.just in mozilla.then i figured out its the issue with menu so i changed the css to following
ul#menu-main{overflow:hidden;}
it solved the issue but the dropdown menu was not showing which was showing before i changed the above css.so I reveretd back.
is there any other css to make it responsive in mozilla without hiding the dropdown submenu? thanks!!
I believe this might be the solution to the problem. In the container div, instead of using overflow:auto, use overflow:hidden.
I inspected and checked with firebug and it worked for me