Hi Tamie,
I suppose you mean images through the BBcode editor?
The filesize can not be set. What can be set is the maximum width for how it is shown.
The plugin has this CSS:
.gwolle-gb .gb-entry .gb-entry-content img {
max-width: 100%;
}
You could change it to a different percentage. The element that is being targeted would need to be more specific then, like this:
html body .gwolle-gb .gb-entry .gb-entry-content img {
max-width: 80%;
}
This Custom CSS can be added in Appearance > Customizer > Custom CSS.
-
This reply was modified 2 years, 6 months ago by Marcel Pol.