Hey there, I'm pretty new to web development and I've been trying to center a forum logo without much luck.
I've tried using margin:0 auto; and float: center; but the only way I can get the logo to move anywhere is float: right; and margin-left: 100px; (or however many pixels)
I can center the logo using margin-left however when the browser is scaled at all it's no longer any good. If anyone could help I'd really appreciate it thank you!
a.logo{
height: {theme="ipsf_logoHeight"}px;
color: {theme="ipsf_logoColor"};
font-size: {theme="ipsf_logoSize"}px;
text-decoration: none;
line-height: 1;
max-width: 100%
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
}