- This topic has 9 replies, 3 voices, and was last updated 4 months, 1 week ago by
Tom.
-
AuthorPosts
-
September 17, 2020 at 2:57 pm #1447812
guevara
My site has just updated to 1.12.0-beta.1 and it’s kind of ok on my android but broken on my iPad – I don’t have access to my laptop so I am unable to check. Please help
September 17, 2020 at 2:59 pm #1447814Leo
StaffCustomer SupportHi there,
Can you clear and disable your caching plugin first?
Let me know 🙂
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/September 17, 2020 at 3:54 pm #1447848guevara
I did that and it’s not changed.still the same.
September 17, 2020 at 4:00 pm #1447854Leo
StaffCustomer SupportAny chance you can disable all plugins except GP Premium for us to take a closer look?
Thanks 🙂
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/September 17, 2020 at 4:07 pm #1447858guevara
All deactivated.
September 17, 2020 at 4:10 pm #1447859Leo
StaffCustomer SupportSo what is broken currently?
The navigation not turning into toggle on mobile?
If so what is your setting here?
https://docs.generatepress.com/article/mobile-navigation/#using-gp-premiumDocumentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/September 17, 2020 at 4:17 pm #1447861guevara
The posts on the front page were 3 columns and 3 rows. But now it’s showing up as 2 columns and 5 rows. The footer widgets were 1 row 3 columns But now it’s 2 columns and 2 rows. It’s ok on mobile but not right on a notebook.
September 17, 2020 at 5:04 pm #1447882Tom
Lead DeveloperLead DeveloperHi there,
I’m still seeing caching activated. Can you make sure all caching plugins and Autoptimize are deactivated so we can inspect further?
Which GP Premium version did you update from?
Thanks!
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 17, 2020 at 5:17 pm #1447891guevara
Apologies it’s all been deactivated- not sure what version I updated from but there were 2 updates. The 1st update left the side real badly broken but the 2nd update fixed it all but left it with the current problem.
September 17, 2020 at 7:48 pm #1447993Tom
Lead DeveloperLead DeveloperHi there,
I’m not seeing anything broken.
The columns turn to two columns on tablet by default as they have the
tablet-grid-50
class. This has been the case since we introduced columns.You can remove that class like this:
add_filter( 'post_class', function( $classes ) { return array_diff( $classes, array( 'tablet-grid-50' ) ); } );
The same applies to the footer widgets. To force them to remain in 3 columns, you can do this:
@media (max-width: 1024px) and (min-width: 768px) { .inside-footer-widgets>div:nth-child(odd) { clear: none; } .inside-footer-widgets > div, .active-footer-widgets-3 .footer-widget-3 { width: 33.333%; } }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.