remove white background gif code example
Example 1: replace white spaces javascript
const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio
Example 2: remove background resize
// For removing resize of big images in wordpress, put this into "function.php"
add_filter( 'big_image_size_threshold', '__return_false' );