Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1184128

    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?

    #1184141

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.