I’ve already told you I’m not using Pro. The effect I want I have achieved before on this web-site (see the logo and info area at top)… https://www.themillslawfirm.com, that’s the style of arrangement I want.
To do this, the X Team gave me this piece of global CSS…
.x-logobar {
background: url(https://www.themillslawfirm.com/wp-content/uploads/2017/02/leatherTexture2.jpg)
}
.masthead-stacked .x-brand {
float: left;
}
.header-contact {
text-align: right;
color: white;
}
.header-phone {
text-align: right;
color: #034d65;
font-size: 2em;
font-weight: bold;
}
.x-navbar .desktop .x-nav > li:last-child > a {
border-right: none;
}
.x-navbar .desktop .x-nav > li > a {
border-right: 1px solid white;
}
.header-contact + br {display: none;}
and this piece of global JavaScript…
jQuery(document).ready(function($) {
var html = ‘
Merit Tower
12222 Merit Drive, Suite 800
Dallas, TX 75251
’;
$( html ).appendTo(’.x-logobar-inner .x-container’);
});
But this does not work on my new site.
Can you help me modify the code so it will work?