-1

I have the following website website. Problem is when opened in a mobile browser the content doesn't scroll horizontally. I have added overflow:scroll; to the body in the default.css but it doesn't seem to be doing anything. Please help.

nikhil
  • 1,578
  • 3
  • 23
  • 52
  • Are you using vanilla CSS or a library/framework? Have you tried to be [more specific](https://stackoverflow.com/q/4072365/7665043) with the CSS selector? How about playing with it in dev tools? – l3l_aze Aug 26 '20 at 23:01
  • @l3l_aze, he is neither using a library or a framework. – Simplicius Aug 26 '20 at 23:17
  • Always submit the related code when asking questions about bugs – Kavindu Pasan Kavithilaka Aug 27 '20 at 00:14
  • I think ykd's answer is right but do the blue background supposedly react that way after resizing? – Humanoid Aug 27 '20 at 00:35
  • Please edit your question to include the relevant code in a [minimal,reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). Questions on Stack Overflow must be self-contained as external links can change so when you fix your website then the problem cannot be seen anymore and that makes the question invalid and unhelpful to other users. – FluffyKitten Aug 27 '20 at 01:06
  • 1
    first the sity is poorle optimized for mobile use. it has a media query but only to remove the banner. There elements with a min-width of 1200px. Fixed pixel values espacially that high work poorly with mobile use. Also you used overflow:hidden which will remove the scroll ability. – tacoshy Aug 27 '20 at 01:07

2 Answers2

1

You can remove overflow:hidden on default.css line: 363 and try again.

Screenshot:

screenshot

derloopkat
  • 6,232
  • 16
  • 38
  • 45
YKDSoFT
  • 101
  • 5
0

Try using width property on header-wrapper and wrapper divs. This allowed me to scroll horizontally.

molaxcode
  • 9
  • 1