Okay
  Public Ticket #1675197
request: optimise for widescreen resolutions
Closed

Comments

  •  2
    martinkuipers started the conversation

    Hi,

    When viewing the website on an ultra wide monitor (2560x1080px), the scaling seems a bit off. This can be on purpose, that you prefer the alignment to be on the left side. But it leaves a large whitespace on the left. Is it possible to use the responsive scaling used on your Kathy template? This seems to have the same space on both sides when viewed full screen on 2560x1080px. 

    Thanks,

    Martin


  •  291
    Paul replied

    Hi Martin!

    Please use this custom CSS to align the content at the center of the screen:

    @media only screen and (min-width: 2560px) {
        #root-container {
            margin: auto;
        }
    }
    

    The CSS rule will be triggered if the current viewport is 2560px wide and larger than that.

    Cheers,
    Paul