Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #870123

    jamesdwise
    Participant

    Hey guys!

    I am using the Agency template as the start point for my site.

    Could you tell me how I can move the site logo text to the left slightly? If there is some code I can insert to control the placement of the text that would be great so I can adjust it a bit. Currently it is centered, I would like to move it over to the left a bit.

    Thanks in advance!

    James

    #870124

    jamesdwise
    Participant
    This reply has been marked as private.
    #870600

    Lely
    Moderator

    Hi James,

    Please try using the following CSS via Appearance > Customize > Custom > CSS:

    .masthead-stacked .x-brand {
         float: left;
         margin-left: 13%; /* Check the effect of this line. You may adjust this to move the text position or you may remove this completely*/
    }
    .logo-subtitle {
        clear: left;
        float: left;
        margin-left: 13%; /* Check the effect of this line. You may adjust this to move the text position or you may remove this completely*/
    }

    Hope this helps.

    #870686

    jamesdwise
    Participant

    Hi,

    Absolutely perfect, thank you very much!

    James

    #871001

    Zeshan
    Member

    You’re welcome! 🙂