filmov
tv
CSS Clamp Fully Responsive Menu

Показать описание
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
In this tutorial we will be creating a dynamically-sized responsive header with 'fluid typeography' in Divi (CSS Clamp Function). This will scale all the way from the mobile/tablet breakpoint, displaying a full menu on iPad and other tablets. Logo and type size will scale smoothly as the viewport scales.
CSS
/* Enable full menu on tablet */
@media all and (min-width: 768px) {
#fluid-header .et_pb_menu__menu {
display: block;
}
#fluid-header .et_mobile_nav_menu {
display: none;
}
}
/* Use 'clamp function to size logo */
#fluid-header img {
max-width: clamp(150px, 20vw, 350px);
}
/* Use 'clamp function to size menu links */
#fluid-header a {
font-size: clamp(14px, 1.5vw, 22px);
}
/* Use 'clamp function to size dropdown link */
#fluid-header li li a {
font-size: clamp(12px, 1.5vw, 18px);
}
/* Use 'clamp function to size menu LH padding */
#fluid-header .et_pb_menu .et-menu li {
padding-left: clamp(2px, 1vw, 20px);
}
Divi is the leading page-builder for WordPress, bringing a powerful drag-and-drop page building experience to the world's leading content management system which powers nearly 40% of ALL websites.
If you purchase a Divi licence using the following link, I will earn a commission from Elegant Themes which helps support my channel. See the Elegant Themes site for details. Thanks in advance!
By using these affiliate links I will earn a referral commission which helps support my channel.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
In this tutorial we will be creating a dynamically-sized responsive header with 'fluid typeography' in Divi (CSS Clamp Function). This will scale all the way from the mobile/tablet breakpoint, displaying a full menu on iPad and other tablets. Logo and type size will scale smoothly as the viewport scales.
CSS
/* Enable full menu on tablet */
@media all and (min-width: 768px) {
#fluid-header .et_pb_menu__menu {
display: block;
}
#fluid-header .et_mobile_nav_menu {
display: none;
}
}
/* Use 'clamp function to size logo */
#fluid-header img {
max-width: clamp(150px, 20vw, 350px);
}
/* Use 'clamp function to size menu links */
#fluid-header a {
font-size: clamp(14px, 1.5vw, 22px);
}
/* Use 'clamp function to size dropdown link */
#fluid-header li li a {
font-size: clamp(12px, 1.5vw, 18px);
}
/* Use 'clamp function to size menu LH padding */
#fluid-header .et_pb_menu .et-menu li {
padding-left: clamp(2px, 1vw, 20px);
}
Divi is the leading page-builder for WordPress, bringing a powerful drag-and-drop page building experience to the world's leading content management system which powers nearly 40% of ALL websites.
If you purchase a Divi licence using the following link, I will earn a commission from Elegant Themes which helps support my channel. See the Elegant Themes site for details. Thanks in advance!
By using these affiliate links I will earn a referral commission which helps support my channel.
Комментарии