Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extra right margin on chrome developer tools

I am a bit confused with this. If I view the website as is, It appears to fit the screen properly. It fits when I click "inspect". It also fits still when I toggle "device mode".

However if I attempt to re-size or view different screen sizes in device mode, there is white space on the right at all sizes. It only does this with http://toqueholistico.com/.

Any suggestions on how to fix this?

EDIT: screeonshot enter image description here

like image 907
CZorio Avatar asked Jun 05 '26 06:06

CZorio


1 Answers

The issue is the .vc_row class. It's applying a negative margin on the left and right, which is causing an overflow overall.

Try overriding it with:

.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
like image 58
Gideon Pyzer Avatar answered Jun 07 '26 22:06

Gideon Pyzer



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!