Fix header

This commit is contained in:
2025-09-11 10:36:05 +02:00
parent 41ea4e2f72
commit ef42da4a9d
4 changed files with 11 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -3508,6 +3508,9 @@ body#authentication {
}
}
}
.elementor-checkbox-label {
color: #ffffff;
}
}
.elementor-field-label {

View File

@@ -199,9 +199,14 @@ jQuery(document).ready(function ($) {
var $menu = $(this)
dropdownMenuHeight = $menu.outerHeight()
var offsetTop = $menu.offset().top
// var offsetTop = $menu.offset().top
var offsetTop = $('header').height() - 20
// console.log('Offset top: ' + offsetTop + 'px',);
var maxHeight = windowHeight - offsetTop - 30
// console.log('Max height: ' + maxHeight + 'px',);
$menu.css('max-height', maxHeight + 'px')
}