Jump to content

[Bug] Sidebar Position


Go to solution Solved by Ehren,

Recommended Posts

58 minutes ago, Marc Stridgen said:

Yes, that would be correct at present

I don't think so because you are just moving the sidebar from the right to left on full size screen. Whenever it's on "Right" sidebar widgets displaying in the bottom of the site on small screens, so it should be the same on the "Left". 

Why would I want to see the side widgets displaying first thing before the main site forum?

Edited by Afrodude
Link to comment
Share on other sites

May you please at least pass it on to the dev team because it's incorrect to see the side widgets displaying before the main site on small screens whenever the sidebar position just changed to "left'. Thanks

Edited by Afrodude
Link to comment
Share on other sites

It’s not “incorrect”. It’s how responsive web design works. You have a flow of containers – one after another – and with a left-to-right reading direction, an element on the left comes first – whether those elements fit on one screen or not. And with the right-to-left reading direction it’s the other way around.
It might not be “preferred” in every situation, but there is nothing “incorrect” about it. 

Quote

Why would I want to see the widgets displaying first thing before the main site forum?

For example, because they contain essential/important information. The help guide section here on the site has the navigation sidebar on the left. That’s a deliberate choice to use the behaviour wrongly labelled “incorrect”. 

Link to comment
Share on other sites

Doesn’t change what I said. Your expectation/experience is not the measure of correctness. 

But this is not worth debating.

I would just encourage you to avoid words like bug/correct/incorrect when talking about your expectation of functionalities – if only to avoid having sceptics like me jumping in and having to correct you. 😉 The choice of words matters. 

Link to comment
Share on other sites

1 minute ago, opentype said:

I would just encourage you to avoid words like bug/correct/incorrect when talking about your expectation of functionalities – if only to avoid having sceptics like me jumping in and having to correct you. 😉 The choice of words matters. 

Of course. 🙂 

Well, with IPS it's not easy to define that because usually, it could be a bug.

Link to comment
Share on other sites

  • Solution

Hello,

Adding this to custom.css should help. I've only tested it on an unmodified default theme, but it may also work on some 3rd party themes depending on their HTML markup.

/* Ensure widgets are shown below the main content on mobiles */
@media (max-width: 979px){
  #ipsLayout_contentWrapper{
    display: grid;
  }
  #ipsLayout_sidebar{
    order: 1;
  }
}

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...