Have you had any luck yet? I am looking to do the same thing. None of this works, but I tried CSS
img.site-logo {
margin-left: 23.55rem;
}
But it creates a horizontal scroll on a mobile device. It may need some type of screen class unless I am already going down the wrong path
img.site-logo {
margin-left: 23.55rem;
}
@media screen and (max-width: 600px) {
img.site-logo {
margin-left: 0;
}
}
I also tried a float center, since float: right; moved it over to the right.
img.site-logo {
float: center;
}
I tried to wrap my image in header.php with center and right. Center did nothing and right went almost all the way right.
<div style="float:right;">
/* image infomration here */
</div>
Maybe this will help you down the path. Please post back if you figure it out.