The Divi Theme includes several mobile menu bar styles. When the desktop version of the site is using a centered header style, the mobile site will display a grey bar with the text "Select Page" and a right-aligned mobile menu button. If you'd like to center the mobile menu button within the header, you can use the following CSS:
/* Center the mobile menu bar button */
.et_header_style_centered #main-header .mobile_menu_bar_toggle {
left: 50%;
left: calc(50% - 16px);
}
Related Post: Adding CSS to the Divi Theme
0 Comments