What could I edit and how in STYLE.CSS to center the logo?
Quote:
/*-------------------- LOGO AREA --------------------------*/
table#logoarea,
table#logoarea tr,
table#logoarea td {
margin: 0;
padding: 0;
background: none;
border: 0;
}
table#logoarea {
width: 100%;
max-width: 100%;
/* more ... */
}
/*-------------------- LOGO -------------------------------*/
.logo {
display: block;
/* more ... */
}
td.logoarea-logo {
width: 1%;
}
|
I have inserted " align: center; " in the above Logo Area and Logo but that has no effect. Likewise, no joy after editing header.php to insert the same instruction as:
Quote:
table#logoarea {
align: center;
border-spacing: 0px;
<?php echo $bfa_ata_logoarea_style; ?>
}
.logo {
align: center;
<?php echo $bfa_ata_logo_style; ?>
}
|
Suggestions on what to edit will be greatly appreciated.
Thanks!