Hello,
I’ve removed my header menu links and would like to center the logo.
I was able to center the header logo that appears after you start scrolling down the page, but not the transparency logo that shows up when the page is first loaded.
I’ve attempted the following code for the transparency logo since it worked for the main header logo, however it will not work:
.logo img.alternate {
position: relative;
display: block;
width: 100%;
text-align: center;
}
Page is straygrounds.com
Solved it myself by adding the following quick code:
.logo img.alternate {
right: 0!important;
}