Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #871429

    I’m trying to add a centered phone number in my socket. See screenshot for rough idea. Basically I wont the copyright stuff on the left, than a phone number centered, and the social icons on right.

    #872249

    Hey,

    Please go to Enfold theme options > Footer and insert your text there inside a Span tag with a custom class and then add following code to Quick CSS

    .copyright {
        width: 100%;
    }
    .your-custom-class { text-align: center; }
    

    Best regards,
    Yigit

    #872307

    Hmm.. I added these but it didnt work. It also looks like the soical icons are and text are on different lines now…

    .copyright {
        width: 100%;
    }
    .copyright-center { text-align: center; }

    <span class="copyright-center">SPEAK TO A SPECIALIST: 1(844)687-2383</span>

    Please Advise

    #872510

    Hi,

    Please try this instead:

    .copyright-center { 
      display:table;
      margin: 0 auto;
    }

    Best regards,
    Rikard

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