Archived topic
footer bar jump
10 replies · Started by casimiro on September 30, 2018
Hi
when we push the buttons on the menu, the webpage starts to jump, making the bar footer visible many times.
Look for button:Conócenos.
I send to contact page my web page, name and pass because it's in maintenance mode.
Can you Tom, looking for it?
Hi there,
Can you first try #1 here and see if it helps with the problem?
https://docs.generatepress.com/article/debugging-tips/
The wp-admin link you provided also takes us to the maintenance page without any fields to enter the user name and password.
Is there a special link we need to login to the website?
Let me know :)
I don't have any problems to enter in another browser with that pass and name.
And now with another pc without problems.
Ahhh you must enter since wp-admin
web site+admin
I prefer that you look at the page before the debug
I think what you're seeing is the Twitter widget in the right sidebar loading.
When it hasn't loaded yet, the sidebar is short so the footer shows up. When Twitter loads, the sidebar gets taller and pushes the footer down.
You could try this CSS:
#custom_html-3 {
min-height: 350px;
}
At all, it continues doing it.
Especially in the button "Conocénos" and different some like a "Libro de visitas".
I'm not seeing that CSS added to your site?
You could try this instead:
@media (min-width: 769px) {
#right-sidebar {
min-height: 550px;
}
}
If it doesn't work, leave it in there so I can see why.
Hey Tom
Now if it works
I had before this code, that you send me previously
@media (max-width: 768px) {
#right-sidebar {
display: none;
}
But now I can't hide the sidebar on mobile device :(
That code should look like this (you're missing a bracket):
@media (max-width: 768px) {
#right-sidebar {
display: none;
}
}
I have put now the two in Simple CSS. Is it nice?
@media (min-width: 769px) {
#right-sidebar {
min-height: 550px;
}
}
@media (max-width: 768px) {
#right-sidebar {
display: none;
}
}
Looks good :)