how to enable full width page template in woo theme memorable?

on http://www.southalgonquincottages.com/wp-content/themes/memorable/css/layout.css (line 480)

change
 #main {
    width: 74%;
}

to

 #main {
    width: auto;
}

on http://www.southalgonquincottages.com/wp-content/themes/memorable/css/layout.css (line 473)

#main.fullwidth, .layout-full #main, .col-full {
    margin: 0 auto;
    max-width: 1140px; <-- REMOVE THIS CODE SNIPPET
    width: 100%;
}

it should be

#main.fullwidth, .layout-full #main, .col-full {
    margin: 0 auto;

    width: 100%;
}