Providing you use a Child Theme or Custom Style plugin, do the following;
? Add <div class="pastor"></div>"
to the header, underneath the <hgroup>
tag.
E.g
From
<header id="branding" role="banner" class="clearfix" style="
position: relative;
">
<a class="header-link" href="https://www.firstchurhofgodinchrist.org/" title="First Church of God In Christ" rel="home"></a>
<hgroup>
<h1 id="site-title"><a href="https://www.firstchurhofgodinchrist.org/" title="First Church of God In Christ" rel="home">First Church of God In Christ</a></h1>
<h2 id="site-description">"For whosoever shall call upon the name of the Lord shall be saved "- Romans 10:13</h2>
</hgroup>
</header>
To
<header id="branding" role="banner" class="clearfix" style="
position: relative;
">
<a class="header-link" href="https://www.firstchurhofgodinchrist.org/" title="First Church of God In Christ" rel="home"></a>
<hgroup>
<h1 id="site-title"><a href="https://www.firstchurhofgodinchrist.org/" title="First Church of God In Christ" rel="home">First Church of God In Christ</a></h1>
<h2 id="site-description">"For whosoever shall call upon the name of the Lord shall be saved "- Romans 10:13</h2>
</hgroup>
<div class="pastor"></div>
</header>
? Add the CSS:
#branding {
position: relative;
}
#branding .pastor {
position: absolute;
right: 50px;
}
The next stage would be adding the image into the HTML or CSS, which do you want to do?