.single-caption now has an attribute "overflow-y: hidden". Not sure if this has been inserted with some custom CSS or is from a theme update.
samuel.t
Posts
-
Overflow-y not hidden on captions-wrap -
Overflow-y not hidden on captions-wrap@arminunruh : looks like another class selection is needed:
.lay-carousel-sink .single-caption { overflow-y: hidden; }
.single-caption instead of .captions-wrap
-
Overflow-y not hidden on captions-wrapAre you're sure you're running the latest theme? When looking at your page, the fix with "overflow-y: hidden" is not there. When adding it manually through the developers console, the page looks fine.
-
Overflow-y not hidden on captions-wrapYep, fix works - thank you. Bug can be closed.
-
Overflow-y not hidden on captions-wrapGreat - I'll wait for the update and confirm once the problem is resolved.
-
Offtopic: Forum and Website not using HTTPSThat's great, thank you very much!
-
Overflow-y not hidden on captions-wrapI unfortunately cannot provide a login since this is page from a customer and we don't have a testing environment setup. But I can provide any information or debug info you need. Currently, following plugins are installed:
- BackWPup
- Coming Soon Page, Under Construction & Maintenance Mode by SeedProd
- InfiniteWP - Client
- Lay Theme Carousel
- LiteSpeed Cache
- Simple Custom CSS
- WP-Matomo
None of them should cause the problem described above (also, the overflow wasn't there in past but was introduced with a recent theme update. The plugins are installed long time ago, no issues).
Only custom CSS snippet added is the fix mentioned here in the thread.
-
Carousel caption bugCreated a new bug report here: http://laythemeforum.com:4567/topic/5945/overflow-y-not-hidden-on-captions-wrap
-
Overflow-y not hidden on captions-wrapThe captions have a small overflow which activates the scrollbar:
(Source: http://www.clarafanlo.com/activation, since my page is already fixed with custom CSS.)In my case, problem was solvable by adding custom CSS:
.lay-carousel-sink .captions-wrap p { overflow-y: hidden; }
Alternatively, I could increase the height by 1px, but that's less preferable, at least for me.
I believe this is a theme bug, since I'm not the only one with the problem (eg. http://laythemeforum.com:4567/user/scotty2hotty).
-
Offtopic: Forum and Website not using HTTPSLet's say it's "best practices", especially since I login with a password and a username - I'd like to have that secured during it's way to your servers.
-
Offtopic: Forum and Website not using HTTPSSince I cannot find any contact form... Bit of shame that layhemeforum.com:4567 and laytheme.com are not using HTTPS ;)
-
Carousel caption bugHad the same issue. Think you need to hide overflow-y, not overflow-x.
My custom CSS looks like this:
.lay-carousel-sink .captions-wrap p {
overflow-y: hidden;
}Hope that helps!