Absolutely, the customizer feature in WordPress allows you to do this.
To make changes, simply go to wp-admin
and follow these steps:
display -> customizer -> extra CSS
In the textarea
, enter the following:
img
{
height: 200px; // customize as needed
}
Remember to save your changes by clicking on publish!
If you prefer using the theme editor instead, you can access the CSS
file through:
wp-admin -> display -> Theme editor
Search for the original source file where the code is defined within the editor.
You can easily locate this source file by inspecting elements in your browser, which will point out the specific file and line that contains the code you need to modify.