How can I change the order of the sidebar? The way the layout is made, the sidebar on small screens is completely wrong: it appears right after the gallery, before the title, and even before the breadcrumbs. The user is reading something they don't know what it is! How can I display it after the intro text or after the main text? Miltos
Hi @miltos, Add the following CSS code into the Custom CSS modal section to move the sidebar below the main text on small screen.
@media (max-width: 768px) { .view-listing-detail .listing-info-detail-wrap > .row { flex-direction: column-reverse; } }
Kind regards,
Thank you cssyeah But this solution is wrong: the sidebar appears outside the article (specifically after the pagination). The correct thing is to be in the article, i.e. immediately after the main text or after the introtext. Miltos
https://ja-findus.demo.joomlart.com/index.php/listings/listing-detail/layout-detail-1
With above suggestion from @cssyeah , the business info will display underneath the main content.
Are you using the same layout for article on your site?
no saguaros, this way brings the sidebar below the comments, not below the main content. That is, outside the article. This needs to be solved, otherwise this template is useless for me and I will have to find something else. Miltos
Hi @miltos, Extract the attached file and copy it into the "ja_findus/local/html/com_content/article/" folder. I customized the layout so that the Sidebar will display below the introtext on mobile screens.