Hi there,
How can I centre the copyright information in the socket area of the footer? I tried to simply add <center></center> around the text in the Copyright box in Enfold Theme Options but this didn’t work.
Thanks,
Josh
try this in your quick css field:
#socket .container {
text-align: center
}
#socket .copyright {
float: none !important;
}
Hey!
Please feel free to let us know if that will work out for you or you need further assistance
Regards,
Basilis
Worked, thanks for the solution. Even there’s a semikolon missing after center!
Hi baiker,
Glad you got it working for you! :)
If you need further assistance please let us know.
Best regards,
Victoria
concerning to: https://kriesi.at/support/topic/how-to-centre-text-in-socket/#post-845728
on css optimizers often the last semicolon is erased. it is not necessary.
So code could be:
#socket .container {
text-align: center
}
#socket .copyright {
float: none !important
}
because there was no attribut list for each rule – if so the semicolons are necessary – except the last !