0

I've looked all over and can't find the correct solution.

Problem: My WP admin bar and main header is fixed, but when scrolling up the admin bar and main header come down. See picture.

scrolling up

When scrolling down the WP admin bar disappears a little bit, see picture. enter image description here

What can I do so it always stays in place?

Wouter
  • 67
  • 10

1 Answers1

0

When you login to your site that time admin bar show on the front side and that time WordPress has added the 2 class in the body. please check to inspect element and see the <body class="logged-in admin-bar"> Now you can add the style in this class like below.

enter image description here

If you fix or not fix so you can write your code in this style like margin, padding etc

.logged-in.admin-bar{

/*Put code*/

}
bhavesh vala
  • 873
  • 7
  • 14