Before you ask please READ THIS

Social Media Icons

edited March 2013 in Hypershot Posts: 26
Hi

Is it possible to move the social media icons to the footer, ideally aligned to the bottom left? Also, is possible to include them in each photos description?

Link to site: georgeangelovski.com

Thanks in advance!

Comments

  • AirAir
    Posts: 10,970
    Hello,

    Unfortunately not. This would be deeper theme customization, which we don't do(free or paid) as we don't have time and man power for that.

    With regards.
  • Np, thanks for the reply.
  • Posts: 40
    Hello guys,
    I managed to move the social icons to the footer :)

    I just cut (!) it from header.php out of the content < div >
    <?php
                //socials
                $visible_icons = $apollo13->get_option( 'social', 'social_number_of_visible' );
                if( (int)$visible_icons > 0 ){
                    $icons_set = $apollo13->get_option( 'social', 'social-icons-set' );
                 ....
                 ...
                 ...
                   
                    if($has_active){
            ?>
                    <div class="socials">
                        <span class="static"><?php _fe( 'Follow' ); ?></span>
                        <div class="visible">
                            <div class="slide"><?php echo $soc_html; ?></div>
                        </div>
                    </div>
                <?php
                     }
                }
                ?>
    
    and put it in footer.php in the content < div > (on the place, I'd like it to be).

    After this, I adjusted the css
    
    .js .socials .visible{
        display: block;
    }
    
    and some more .socials properties to get what I want.
    Now it looks great :)
  • AirAir
    Posts: 10,970
    I didn't check it but that is VERY kind of you that you share this solution!

    Thanks for that:-) "Thanks for being kind", like Mike Falzone once said ;-)
  • Posts: 40
    You're welcome :)
  • Posts: 58
    Hmm, could I get a more detailed explanation. I am just a stupid when it comes to CSS.

    Copied the paragraph you mentioned, but in the footer only the word social appeared...
  • Posts: 40
    I add my footer.php for explanation.
    zip
    zip
    footer.zip
    1K
Sign In or Register to comment.