Hi,
I’m no expert, but as you’ve not had a reply:
I suspect a media query in parent CSS is taking precedence. I set my wider screen entry-content width to 90% (I assume it would work for 100%)using the following in child css:
@media screen and (min-width: 61.5625em) {
/* widen entry content on wider screens */
body .entry-content, body:not(.search-results) article:not(.type-page) .entry-content {
float: right;
width: 90%;
}
/* your other site styles for width > 61.5em */
}
I did a cut and paste from parent CSS and just changed the width, you can probably strip out things like “float:right” etc
HTH