@Nail
I know what you mean, but you will have to do a work and test it, here is simple tutorial I used on one project.
CSS
#banner-body {display:none;position:fixed;top:0px;width:calc((100% - 1044px)/2);background-color:#fff;z-index:1;max-height: 1000px; overflow: hidden;}
#banner-body img {width:auto;height:auto;max-width:initial;max-height:1000px;}
#banner-body.bleft {left:0;}
#banner-body.bright {right:0;}
#banner-body.bleft img {float:right;}
#banner-body.bright img {float:left;}
#body-home #banner-body, #body-search #banner-body, #body-item #banner-body {display:block;}
HTML (added somewhere to body):
<div id="banner-body" class="bleft"><img src="link to your image"></div>
<div id="banner-body" class="bright"><img src="link to your image"></div>