Adjust The Position Of The Burger Icon (off Canvas) - Question | JoomShaper

Adjust The Position Of The Burger Icon (off Canvas)

CH

Christian Haselsberger

Template 20 hours ago

Hi there, I am having problems positioning the burger icon. This affects the mobile view on the website. I have already tried using this code in Custom CSS. Unfortunately, it is not being applied. @media (max-width: 575px)

offcanvas-toggler {

height:180px;
line-height:60px;
  margin-right:25px;

}

However, this code is not being accepted. Any idea how this can be fixed? Thank you so much Christian

0
2 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 19 hours ago #214775

Hi Chris,

Inside your custom.css I saw that you used those two


body.ltr #offcanvas-toggler.offcanvas-toggler-right {
  float: right;
  margin-left: 20px;
}

@media screen and (max-width: 575px) {
    #offcanvas-toggler {
        height: 180px;
        align-items: flex-end;   /* 👈 DAS ist der Schlüssel */
        margin-left: 25px;
    }
}

and on front-end look OK

info_3708_2026.jpg

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 19 hours ago #214777

Tell me what is your goal, where [=] icon must be?

0