Hi , this is a simple question. How do I center the copyright information ?
I don’t have a menu in the socket. Thanks
Hi dsgnerfw!
Try adding this to your Quick CSS field in the styling options of the theme options:
.sub_menu_socket {
display: none;
}
#socket .copyright {
text-align: center;
width: 100%;
}
Best regards,
Devin
Thanks Devin , it works now ! I used this code earlier
>
#socket .copyright {
text-align: center;
width: 100%;
}
<<< but didn’t know that sub menu was causing the problem =)
Yep, just gotta clear it out of the element from being rendered so the copyright can expand to fill the whole space.