Hover over Dropdownlist HTML5 looking for a specific code - html

I want to make a form with dropdownlists like the ones on the site Nafham.com website exactly (with the headers on hover on first one and multiple columns). Are there any ready scripts for that? Is it possible to do the exact thing in Twitter Bootstrap? I am new to HTML5 so I appreciate any feedback. Thanks.

With reference to your comment above, there is a difference between stealing and gaining inspiration. So far for Off-Topic
When i understand you correctly, you want a dropdown menu with multiple columns. This can be relatively easy done with simple CSS. Learn about basic CSS and try to implent your own version, based on the bootstrap dropdown, if you like.
Correct me if i missed anything.

Related

Mobile navigation menu move all page?

anyone can help me create a menu that works like this on this page:https://www.cabinet-maker.co.uk/ for mobile.
I mean menu buttons and search, I really like it but I do not know how to create one, I'm new and I wanted to create one in my own blog.
You don't need a plugin, you can use plain JavaScript. I made a quick fiddle of it here:
https://jsfiddle.net/rajoh4bp/8/
Hover Over The Retail Navigation Bar Option Once You Are There.
You can use one of the jQuery plugins. For example https://mmenujs.com/ or https://corenav.com/index.html. Actually, there are a lot of menus, just google them and choose one of your favorite.
You can make some fancy css3 menus by starting from nothing. You can add javascript or not.
Even w3school have a cool little tutorial about mobile menus :)
The most important thing to learn in webdesign is the vocabulary, so you can make efficient searches queries and find immediately what your are searching for.
For this request, the important words are "menu" and "slide". And you find another w3school tutorial :)

how to design a html 5 dropdown

I am designing a website using vue.js (vue-cli3) and,
I am in need of designing a select list, that looks similar to the below image
I have currently done some minor designing like, changing the arrow icon, etc. i would like to know if there are any dropdown packages that can be used or if some one can point out any tutorials that i can refer to design an html select.
For your problem, you should have a look at : https://www.w3schools.com/howto/howto_js_dropdown.asp
or : https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_dropdown_navbar_click
For your future problems of that sort, you should have a look throughout w3schools.com's entire website. You'll probably find almost everything you are looking for!

How can I add a table in a theme using Wordpress

I’m building a site as part of my research using Word Press. I’m trying to display samples on the homepage in a neat way, something similar to this one http://www.maitrechoux.com/menu/index.html?categ_id=all .
I have removed all of the home function using remove_action. How can I add the table and then how can I add the pictures inside each cell? Is it only matter of CSS or do I need to add HTML code for this? I recently joined word press community and this is the only thing remained to complete my website. Really appreciate any help!
NO, don't use tables. I think what you actually want is just to display something that looks like table.
You need to code both html and css for that.
You can use any of popular css frameworks to help you out, or you can code it yourself using, flex, floats, or grid...
When you are done then with wp functions you need to render that data in your wp theme.
Your question is to broad and big to be answered via code snippets or examples, sorry.
I recently wanted to change the template of my WordPress website and use React tables.
But this would cause my site to drop in Google rankings, and in terms of SEO, this would not be a good thing.
That's why I decided to use my template pre-built tables and change the files to my liking in the settings section by editing css files.

Using a dropdown menu to show specific pieces of text according to input

I am making a online website with hints for a game i made using HTML and i want the user to be able to use a drop-down-menu to select what level they would like to get a hint of so the other levels won't be spoiled. Online i found some articles talking about
<select>
and
<option>
But i could not find any explanation or example of creating the end result i am hoping off. I am (very, very, very) new to html and other coding so if the answers could be explained in a full size html and not using hard terms, that would be greatly appriciated.
If anyone knows how this works and could explain this to me please leave an answer down below.
(Sorry for bad english, I'm Dutch.)
EDIT:
Using JavaScript is not a problem by the way.
Javascript is needed to accomplish this. Drop-down menus are not something that can be created with plain html.

Help with css layout

Im attempting to re-create the following layout seen in the screenshot below.
I wanted to ask whats the best way to go about creating the menu and content section.. im not quite sure on how to join the selected menu option with the content section, any advice would be great
Also should i use ul/li for the menu?
And the top menu bar (where is says create) should i use a big div, with each item as spans inside?
thanks for any help
In order to recreate this layout, you will need to learn a variety of concepts.
First, how to style an unordered list ( <ul><li> ) to work as navigation.
Second, you will need to learn how to position elements, either through using float:left|right or position:absolute|relative.
Finally, and perhaps most importantly, you will need to learn how to use either Google Chrome's Developer Tools or Mozilla Firefox's Firebug, as these are indispensable tools for reading and writing html/css. Specifically, you will need these tools in order to inspect the code for other websites to see how they implemented their design. This is perhaps one of the best ways to learn code (at least it was for me).
Providing a detailed description of how to do all of this would take too long and really detract from the valuable learning experience you will get from googling, fiddling around in the original source code, and trying to recreate it in your own site. If at any point in that stage you have trouble implementing something, then by all means come back to stackoverflow and ask for help :)