NO BUG: Horizontal scrollbar issue and sticky header problem (includes 'no-js' and 'no-svg' classes in inspect element)

Browser: Chrome 110
OS: macOS / Windows / Linux / etc.
URL: Link to the page that illustrates this issue https://mubindid.com/
Video: Short screen recording that illustrates this issue. Watch this jam.dev video → Jam

Hi @timmse and everyone,

I’m experiencing an issue with my website built with BricksBuilder. I have an overflow problem where my website has a horizontal scrollbar. To fix this issue, I added the following CSS code to my theme’s stylesheet:

html,
body {
  overflow-x: hidden;
}

This CSS code worked to fix the overflow issue, but now my sticky header is not remaining sticky. I suspect that the overflow-x: hidden property is affecting the positioning of my header element.

When I inspect the blank area of my website, it shows “html.no-js.no-svg”. However, in the inspect element, it points to the HTML element.

I’ve tried adding the following CSS code to fix the issue:

body {
  overflow-x: hidden;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

Unfortunately, this CSS code did not fix the issue.

Can anyone offer any suggestions or solutions to fix this issue? I would greatly appreciate any help or guidance.

Thank you in advance!

Hi Mubin,
It is sufficient if you either create a report in the forum, or by email - to which I have already replied.

I can’t understand/reproduce your problem on your site and assume a Chrome/Dev Tools problem.

Best regards,
timmse

My apology Timmse. I thought if anyone were having the issue, I might get the help. But without getting any response for a day, I opened the email request.

Well, actually I answered within 24 hours.
Since it’s not a critical issue, I think that’s within a reasonable time frame :slight_smile:

However: have you tracked down your problem? As I showed you, I could not reproduce it. Was it due to my guess and the “hanging” dev tools?