Hi Alexis!
The Single Post widget automatically expands to the width of the column element that contains the widget and can be adjusted by using the column width drag handles that appear in the Visual Editor.
However, changing the height of that image requires a little more customization and we can use Custom CSS the get the appropriate height setting for it. The default style rules on the Single Post widget set the height to 200 pixels and our Custom CSS will target the class for that image and allow us to set any height we want for it. Here is a snippet you can use to increase the height of that image to 400 pixels:
.bgc-single-image {
height: 400px;
}
The change to 400 pixels is just an example and you can use any height value to want to achieve your design goals!
-
This reply was modified 4 years ago by Joseph W.