This is due to your override of the CSS in /wp-content/uploads/oxygen/css/universal.css
.
You have a rule that reads as follows:
.letter-section ul.columns li {
margin-bottom: 15px;
width: 450px;
}
This forces the width of the list to 450px
independent of how big the viewport is. You could try amending it slightly with this:
.letter-section ul.columns li {
margin-bottom: 15px;
width: 450px;
max-width: calc(100vw - 60px);
}
Though a better choice would be to override the plugin’s inbuild styles which reference the following selectors with enforced widths:
.letter-section ul.columns.max-1-columns
Enforces max-width
to the size of 15.6em
to correlate with 1 column’s width set in the next selector. There are several of these counting up to .letter-section ul.columns.max-14-columns
. The values are the number of columns multiplied by 15em
and then 0.6em
added on top for padding.
.letter-section ul.columns
Enforces the column-width
to 15em
.