Hi @heinelg,
No, you don’t need to post multiple reviews for the same theme. If you are using different then you can do a review for that particular theme.
In your site https://ridgeviewmennonite.org/, you have CSS for width as follows, which replaces the default 820px width for No Sidebar Content Layout Width.
.no-sidebar.content-width #main {
width: 100%;
}
But if your site https://hbccc.org/wp/, you have CSS as :
.no-sidebar.content-width #main {
max-width: 100%;
}
For the best result, you can use the code as:
.no-sidebar.content-width #main {
width: 1200px;
max-width: 100%;
}