Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #858778

    crucialtim
    Participant

    Hello,
    I’m wondering how I can add a few text links to the left of the social icons in my header (see attached). I’m using the Integrity stack.

    #859081

    Rupok
    Member

    Hi there,

    Thanks for updating. You can add the below content under Customize > Header > Topbar Content :

    <p class="top-content">Some example text</p>

    And then add this under Custom > CSS in the Customizer.

    .top-content {
      float: right:
    }

    You might need to use different CSS or your own CSS to position this on right correctly. I hope you can do this yourself.

    Cheers!

    #863888

    crucialtim
    Participant

    Thanks for the reply. This is what I did prior to posting, and it doesn’t work. See attached.

    #864385

    Christopher
    Moderator

    Hi there,

    Please add the following code in Customize -> Custom -> JavaScript :

    jQuery(".x-topbar .x-social-global").prepend("<span>some text</span>");

    Hope that helps.