Home > Back-end >  Website responsible problem in mobile view
Website responsible problem in mobile view

Time:07-31

Why am i getting this extra margin to the right of the website in the mobile view?

see this website on mobile to see the problem https://likithmeruvu.github.io/

problem is why am i getting the extra margin or space to my right of the website in mobile view can anyone help me with this

My Code https://github.com/LikithMeruvu/LikithMeruvu.github.io

CodePudding user response:

you have a problem with the image "images/stphone.png", the image is rotated and crossed the right border

you need to add overflow: hidden to get rid of that effect.

add overflow:hidden to the col-md-6 class that wraps the image

screenshot

CodePudding user response:

your image logo(stphone.png) breaks the page and caused the gap you need to add overflow: hidden to section#title (the parent) or the image parent itself.

  • Related