- This topic has 22 replies, 5 voices, and was last updated 6 years, 5 months ago by
generatepressuser.
-
AuthorPosts
-
August 12, 2019 at 12:47 pm #982359
generatepressuser
UPDATE:
Hi, I did some changes in the meantime, I hope you did not check it right now ^^
I was kind of unsure what exactly looks better so currently I have activated both sidebars left and right.And now I think the left sidebar does not have to be hidden when below a certain screen, I now think it would be better when the sidebar just moves below the page, same as it is when its mobile, is that possible?
When you make screen smaller than around 1001px, the left sidebar becomes ugly, thats the reason I would need the sidebar to have at that point to be below the page.
Regards
August 12, 2019 at 4:40 pm #982476Leo
StaffCustomer SupportOk so just to make sure, the current requirement is to increase the breakpoint when the sidebar moves below the content at
1001px?And the right sidebar will stay hidden?
September 18, 2019 at 6:24 pm #1013140Mark
Hi Leo,
I’ve seen you mention a couple of times in this thread you could ‘increase the breakpoint when the sidebar moves below the content at 1,XXXpx’, but not seen the code posted to do this yet.
Would it be possible to have this code please?
Specifically, I want the the right sidebar to drop down below the content when site width hits 960px, and for the main content area to stay 780px and centred.
Is this possible?
September 18, 2019 at 6:31 pm #1013142Mark
Disregard the above please, figured out the following in a max width media query does what I need:
#primary, #right-sidebar { width: 100% !important; float: none !important; }September 18, 2019 at 7:06 pm #1013150Leo
StaffCustomer SupportGlad you’ve figured out 🙂
October 24, 2019 at 11:51 am #1043675generatepressuser
Hello,
When the screen is smaller than 999px , the left sidebar looks ugly.
When the screen is below 768px as mobile view, it looks better. But from 999px until 768 it does not fit.
How could I solve this?
Currently I have a @media which looks as following:
media (max-width: 768px) {
.site-content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
}#left-sidebar {
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
-ms-flex-order: 1;
-webkit-order: 1;
order: 1;
}.content-area {
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-ms-flex-order: 2;
-webkit-order: 2;
order: 2;
}#right-sidebar {
-webkit-box-ordinal-group: 3;
-moz-box-ordinal-group: 3;
-ms-flex-order: 3;
-webkit-order: 3;
order: 3;
}
}October 24, 2019 at 8:03 pm #1043878Tom
Lead DeveloperLead DeveloperHi there,
Any chance you can open a new topic? This one is quite long.
Let me know 🙂
October 25, 2019 at 12:53 am #1043944generatepressuser
Hello,
Yes sure I see ^^
I opened a new topic now.
https://generatepress.com/forums/topic/left-sidebar-does-not-fit/Best regards
-
AuthorPosts
- You must be logged in to reply to this topic.