Snippets to center the text, center the author icon, hide the text, or hide the author icon.
CSS:
This will center the author icon and hide the text in the header:#cff .cff-header .fa{ float: none; }
#cff .cff-header span{ display: none; }
It’s not possible to center both the text and icon in the header without setting a fixed width. Set a width of 50% on the header and then you can center both with this CSS:#cff .cff-header{ width: 50%; margin: 0 auto; float: none; }
This will center the text in the header and hide the author icon:#cff .cff-header .fa{ display: none; }
#cff .cff-header span{ display: block; }