Site logo

Archived topic

Change right sidebar breakpoint

24 replies · Started by Dimitrios on December 12, 2021

Viewing posts 16–25 of 25

I did provide a picture Look: https://ibb.co/VTF0dMx

And yes I think we are talking about the same space. I added the CSS and now the space is gone. Everything works fine now! Thanks!

I'll test things more tomorrow just to be sure that everything is working fine and I'll let you know if something is wrong.

Thanks again!

No problem. Let us know how it goes. :D

That padding 20px in your code was adding an extra 20px to the right of the sidebar below 1000px and I didn't want that so I removed it.

.inside-right-sidebar {
padding-right: 20px;
}

I removed it and now the sidebar is centered when its below the content. I am correct right?

I only wanted 20px padding when the sidebar is not under content (above 1000px).

Also, since I changed to flexbox the font size of the widgets in the sidebar and footer has gotten bigger, and I cant find an option under typography so that I can change that.

How can I change the font size of the widgets that contain text? Not the widgets title, the content of the widgets that contain text. Such as my recent posts in sidebar and the pages on my footer (Privacy policy etc)

I only wanted 20px padding when the sidebar is not under content (above 1000px).

Set it to padding-right: 20px; on @media (min-width: 1001px) and padding-right: 0px; on @media (max-width: 1000px) so the padding doesn't cascade down. :)

How can I change the font size of the widgets that contain text?

Either by custom CSS on the widget's specific selectors or by resizing the "Body" and/or some Headings on typography. (it depends on the content of the widget.)

Thanks I fixed everything!

One more question. Does FLEXBOX makes my site faster than FLOATS? And is FLEXBOX the new default from now on?

Because I don't see any option to go back to FLOATS under GENERAL.

Hi there,

thats correct Flexbox is the default and standard for GP now. Flexbox loads considerably less CSS then Floats. And floats are now deprecated.

I see. Thanks a lot for your help guys!

You're welcome

This archived topic is closed to new replies.