Home > front end >  Exceed horizontal width in Elementor webpage
Exceed horizontal width in Elementor webpage

Time:06-08

by somehow, my webpage got exceed horizontal width.

I could not find where it came from or the cause of it.

  • I did deactivatied plugin 1 by 1. Recheck custom code.

Site Width Issue

As I can see you have given position absolute and right -value in a few images on your site. Those images are taking up extra space on the right side. One easy fix is to add this CSS to your stylesheet.

body {
    overflow-x: hidden;
}

I think it will fix the issue.

CodePudding user response:

You are facing this issue with an image. See the screenshot:https://prnt.sc/2xPZAYalQ8b6 Your image has right position in (-) Fix the image position and do right 0.

  • Related