• Resolved DancingFighterG

    (@dancingfighterg)


    Hello, I’m currently using a plugin called simple social buttons to put share social buttons on the site. I want to use the class designated for the plugin buttons – simplesocialbuttons and place these buttons in the footer of the entire site. I was trying to build some custom CSS to do it but its not working for me. Here is what I have right now:

    .footer .simplesocialbuttons {
    height: 20px;
    margin: 10px auto 10px 0;
    text-align: left;
    clear: left;
    }

    Can I get some help on this

Viewing 16 replies (of 16 total)
  • Thread Starter DancingFighterG

    (@dancingfighterg)

    Ok, figured it out:

    add_filter('tc_colophon_left_block', 'my_social');
    function my_social(){
    	$social = "<span class='st_plusone_hcount' st_title=' . the_title() . ' st_url=' . the_permalink() . '></span><span class='st_fblike_hcount' st_title=' . the_title() . ' st_url=' . the_permalink() . '></span><span class='st_twitter_hcount' st_title=' . the_title() . ' st_url=' . the_permalink() . '></span>";
    	return '<div class="span4 left-social">'.$social.'</div>';
    	}
Viewing 16 replies (of 16 total)
  • The topic ‘Adding social media buttons to footer’ is closed to new replies.