A very personal blog

Annoying horizonal scrollbar

Been trying to fix the comment section on my blog after discovering that it’s causing a wide white space causing a horizontal scrollbar to show. Disabling the comment section removes the white space (that’s how I discovered it) but I need my comments section so I’m still trying to figure it out. I tried replacing the comments section with Disquz, even wpDiscuz but they’re both not integrating well.

Until I decided to make this post and what have you… I just found the right words to google and found CSS workaround to fix my problem.

Turns out I just needed to hide the horizonal scrollbar by adding this to the Additional CSS in Customize.php page

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

Alright, great!