Home › Forums › Trusted Pro › Sidebar issue in mobile › Reply To: Sidebar issue in mobile
September 14, 2018 at 11:04 am
#5684
Andy
Keymaster
Hello, it is not an issue as such, because this is the design of the theme.
However, to display the sidebar above the main content on mobile, copy the following CSS code to Appearance > Customize > Additional CSS:
@media screen and (max-width: 768px){
#content .container {
display: grid;
}
#primary {
grid-row: 2;
}
#secondary {
grid-row: 1;
}
}