skip to Main Content

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.

https://helion.asia/ Could friends take a look and give me a suggestion?

3

Answers


  1. See the screenshot

    You select width from your theme or plugin and override it with elementor. You give width in elemntor section. Check the section layout tab. You will find how you want to give your width boxed or full width. choose boxed and provide a custom width that you want to wish.

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
  3. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search