How to remove white space on the side of a webpage

Some of the free WordPress themes I use has white space on the right side.

Here’s the code to get rid of it:

html,body {
margin:0;
padding:0;
overflow-x:hidden;
}