Show background in small screens

By default background image is not shown in Eino theme. That’s because theme is designed to have bif background image and there is no point to load it on small screens. It saves some page speed also. But in case you have small background image and you want to show it on all screen sizes, here is what you should do. Put this inside setup function in child theme `functions.php`.

`
add_filter( ‘eino_bg_min_width’, ‘eino_child_bg_min_width’ );
`
And this outside of setup function.

`
function eino_child_bg_min_width() {

return 1;

}
`