Page 1 of 1

Slidemenu stuck on .is-top

Posted: 09 Sep 2022, 15:31
by metallissimus
https://test.danielbollinger.de/
user: test
pw: lumarum

I styled the logo like this
Code
.logo{
  float:right;
  right:100px;
}
and now the slidemenu always has the .is-top assigned. Why does it not go down to its initital position anymore?

Re: Slidemenu stuck on .is-top

Posted: 10 Sep 2022, 00:04
by mjau-mjau
Try adding to the parent element instead:
Code
.logo-wrapper {
  padding-right: 100px;
  text-align: right;
}
This is not tested under all circumstances, but I assume it would work.

Re: Slidemenu stuck on .is-top

Posted: 10 Sep 2022, 16:50
by metallissimus
Seems to work fine, thank you!