Bootstrap Schnipsel und Hinweise

Dropdownmenü mit Hover effekt 

CSS

 

.dropdown:hover>.dropdown-menu {
  display: block;
}

 

Der folgende Schnipsel ist wichtig um das obere MArgin im Dropdown zu entfernen, da sonst die Bedienung nich möglich ist.

.dropdown-menu {
    margin-top: 0;

 

JS (Nur Bootstrap 4)

 

jQuery(function($) {
 $('.dropdown > a').click(function(){
 location.href = this.href;
 });
});

Comments

No Comments

Write comment

* These fields are required