Tagged: socket
Hi, I am trying to edit the size of my socket within Enfold to enable Privacy Policy, Term of Service and Disclaimers appear centered above the Copyright info. I also want to increase the text size of these and the socket would need to be taller to enable this.
I can not find any settings to adjust the dimensions, alignment and text size of the socket. Can anyone help?
Hey David,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#socket .container {
display: flex;
flex-direction: column-reverse;
}
#socket .copyright {
text-align: center;
}
#socket .sub_menu_socket {
max-width: 420px;
margin: auto;
font-size: 16px;
}
In the last code, you might need to increase “max-width” value depending on your “font-size” :)
Best regards,
Yigit