Hi 1alyce. Since Flatsome is a commercial product you should post your question with the vendor’s support for help with customizations and issues:
https://themeforest.net/item/flatsome-responsive-woocommerce-theme/5484319/support
These forums are for support of themes available in the wordpress.org repository and the volunteers on this forum don’t have access to commercial products. Contacting the vendor also allows the developers to be aware of potential issues with their products.
Thread Starter
1alyce
(@1alyce)
I’d like to upload images that are the same size or close to, the ones in the sliders on the home page. I’ve already uploaded images, but now I want to change them and make the sizes better. How can I find out the dimension sizes of the original demo images once I’ve already uploaded images? One is a background and 3 are sliders. I’d also like to know the featured image sizes too
The default image sizes created by WordPress are “thumbnail”, “medium”, “large” and “full” (the size of the image you uploaded). These image sizes can be configured in the WordPress Administration Media panel under Settings > Media. This is how you can use these default sizes with the_post_thumbnail():
the_post_thumbnail( ‘thumbnail’ ); // Thumbnail (default 150px x 150px max)
the_post_thumbnail( ‘medium’ ); // Medium resolution (default 300px x 300px max)
the_post_thumbnail( ‘large’ ); // Large resolution (default 640px x 640px max)
the_post_thumbnail( ‘full’ ); // Full resolution (original size uploaded)
Each theme can also create their own thumbnails. You’d need to either check the theme code to determine if it creates separate thumbnails, or check with the theme vendor.