You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
If you're logged in on a small device, the FoundationPress Navbar is covered by the Wordpress navbar.
I've got no idea why the wordpress navbar drops down, but two options to solve it are to set top:-46px on the #wpadminbar container, or override Wordpress' media query in /wp-includes/css/admin-bar.min.css to use relative positioning
media="all"
@media screen and (max-width: 600px)
#wpadminbar {
position: absolute;
/* Override with relative positioning to solve overlap? Does it cause other issues? */
}
The text was updated successfully, but these errors were encountered:
Alternatively, there's an option to turn off the WP toolbar by clicking out off "Show toolbar when using site" in the Users > Your Profile in the admin section.
If you're logged in on a small device, the FoundationPress Navbar is covered by the Wordpress navbar.
I've got no idea why the wordpress navbar drops down, but two options to solve it are to set
top:-46px
on the#wpadminbar
container, or override Wordpress' media query in/wp-includes/css/admin-bar.min.css
to use relative positioningThe text was updated successfully, but these errors were encountered: