Hi, I'm using "JA Seven" and I see that on mobile phones "sidebar-left" is placed below "component" instead of above it. Is there a way to make "sidebar-left" appear above "component" in responsive mode? Thank you
Hi @ariadna3, Create a new file named custom.css in the "ja_seven/local/css" folder. Then add the CSS below into the custom.css file
@media (max-width: 768px) { .t4-main-body .t4-row { flex-direction: column-reverse; } }
Kind regards,
Thank you!