Tagged: siderbar order first
It is possible to reduce the size of the elements such as menu and top stories for the cell view?
Also can i change the order in which the widget is rearranged in the phone view? I would like load the sidebar first and then the rest of the page
Hi @venepress-web,
Could you explain us more the size of element that you required. We meant its about the font size or the paddings and spacing?
To make the sidebar first and the main content after then please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (max-width: 575px) { .site-content .content-area { -ms-flex-order: 1; order: 1; } }