Hi!
This behavior may be caused by css-property position: relative
applied to widget container. To be sure I need to check your site.
Hi Max,
thanks for your kind reply. If you want and can, I will send you privately a user access data so you can see what is happening. I use I widely used theme “BeTheme”.
I know it’s a free plug-in so I’m not pretending anything. But If you’d like I can show you the website.
Thanks
You can send me an email from this page: http://www.q2w3.ru/contacts/
-
This reply was modified 3 years, 4 months ago by
Max Bond.
Ok Max, thank you very much! π
Yes! I see the site now.
position: relative
is present in layout.css line 1122:
.widget {
padding-bottom: 30px;
margin-bottom: 30px;
position: relative;
}
You can disable or change it to position: static
or override with custom CSS (best way):
.widget {
position: static !important;
}
Good Morning Max,
I tried, the CSS takes effect but it doesn’t work.
Now fixed widget it’s blocked except for a strange movement at the start π
Sorry!
That was my mistake:
.widget {
position: static !important;
}
That command override position: relative;
and position: fixed;
both! Please remove it and try to comment position: relative;
in layout.css:
.widget {
padding-bottom: 30px;
margin-bottom: 30px;
/*position: relative;*/
}
Hi Max! Thanks, it seems it has worked now!
I tried several time and I didn’t meet the problem so I think it’s solved.
Thank you very much for your support π