Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #851209

    joanosgoodby
    Participant

    How do I move / reposition the social icons to the far far right of the page (no margins):

    http://wp.jerseyshoreskimcamp.com/

    #851356

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in!

    You can add this under Custom > CSS in the Customizer:

    footer.x-colophon.bottom .x-social-global {
        float: right;
    }
    
    .x-colophon.bottom .x-social-global a {
        padding-right: 10px;
    }

    Thanks.

    #851468

    joanosgoodby
    Participant

    I need to do this for topbar. Please see page http://wp.jerseyshoreskimcamp.com/

    #851679

    John Ezra
    Member

    Hi there,

    Thanks for updating the thread! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .x-topbar-inner.x-container.max.width {
        max-width: 100%;
        width: 100%;
    }
    
    @media (min-width:767px) {
        p.p-info a img {
            margin-left: 40%;
        }
    }

    Hope this helps – thanks!