Site logo

Archived topic

The site is not fully responsive to cell phones

1 reply · Started by Vadims on May 6, 2021

Viewing posts 1–2 of 2

Good afternoon! When viewing the site from a cell phone, there is a lot of space on the right side and can scroll the site by finger till the end (fully white screen). Can you see on the site when you open it from a cell phone https://topkazinos.com/en/
You helped me with the CSS for the language selector
.trp-language-switcher.trp-language-switcher-container {
z-index: 999;
display: block;
flex: 1;
margin-left: auto;
margin-right: auto;
margin-top: -30px;
width: 1315px;
height: 30px;
}
Maybe that's it.
Thank You and Have a Nice Day!

Hi there,

This is quite common with pages that have contents that go beyond the view of the viewport.

The quickfix to this is to add this CSS:

html, body {
    overflow-x: hidden;
}
This archived topic is closed to new replies.