hello guys I have a problem, I want to edit the sticky bar that is stored at the bottom so it is at the top. because when you open the website on your cellphone, the menu is at the bottom so it is covered with the WA icon. how to move the sticky bar to the top?
Hi @megawdyaaaa ,
Do you want the menu to be on the top of the page like this?
Then add the below css to your css file.
@media only screen and (max-width: 767px) {
.js-animate .site-nav__thumb-menu {
top:0;
}
}
yessss right, where do I put the coding? and in which file?
Hi @megawdyaaaa
Go to the theme.css file and add the below css.
@media only screen and (max-width: 767px) {
body .js-animate .site-nav__thumb-menu {
top:0;
}
}
Thank you
yes, I succeeded, thanks for the help. can you make the menu go all the way down and the box isn’t that long?
but wait, when I move to the top of the menu it can’t be clicked, why?
Hi @megawdyaaaa ,
Try adding below css instead.
@media only screen and (max-width: 767px) {
body .js-animate .site-nav__thumb-menu {
top:0;
z-index: 9;
}
.slide-nav__overflow--thumb.js-menu--is-open {
bottom: 0px;
}
}
oke i try adding the coding