Site logo

Archived topic

Social icons

7 replies · Started by Michael Julson on April 30, 2015

Viewing posts 1–8 of 8

Can you explain how you added the twitter, Facebook, and shopping cart icons to your menu bar the GP homepage? I like that style.

Also, do you recommend a particular social plugin (such as charters, add this, etc..) that works well with GP for liking posts, products, etc..?

Is there a way to turn off the "nofollow" option from the Lightweight Social Icon plugin?

Hi there,

you can use this PHP snippet to change the rel attributes value:

add_filter( 'lsi_icon_rel_attribute', function() {
    return 'follow';
} );

Great. Thanks for your help!

One more question. Any idea how I can get the social icons to be inline with the rest of the links in my footer? Right now, it looks a little disjointed. https://www.psychics4today.com (footer bar)

Hi there,

try this CSS:

@media (max-width: 768px) {
    .lsi-social-icons {
        text-align: center !important;
    }
}

@media (min-width: 769px) {
    .inside-site-info {
        display: flex;
    }

    .footer-bar {
        order: 10;
        margin-left: auto;
    }

    .footer-bar-align-center .copyright-bar {
        text-align: left;
    }
}

[deleted]

This archived topic is closed to new replies.