Okay
  Public Ticket #978934
Changing location of social icons
Closed

Comments

  •  2
    Louise Green started the conversation

    Hi there - I would like to relocate our social icons to appear at the top of the screen (as opposed to the footer).  Thanks!

  • [deleted] replied

    Hi Louise,

    Can you please draw a sketch that shows where you want to put the social icons so I will figure out the right way for you.

  •  2
    Louise Green replied

    Thanks!

    We're hoping for something similar to the attached example.

  • [deleted] replied

    Hi Louise,

    Can you please add the following code in functions.php (end of file):

    // Display social media networks in header
    function display_social_media_on_top_header() {
        
        ?>
        <div class="social-media-header-container">
            <?php echo do_shortcode( '[lab_social_networks rounded]' ); ?>
        </div>
        <?php
    }
    add_action( 'kalium_header_main_before_logo', 'display_social_media_on_top_header' );

    Then to style and position it properly, add this custom CSS:

    .social-media-header-container {
        display: block;
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }

    To apply Custom CSS, on WP admin panel menu click Custom CSS link (as shown here).

    This should work for you.

  •  2
    Louise Green replied

    That worked perfectly!  Thank you!  We love the theme ... it looks awesome.

    Additionally, we have a bulleted list on the site and the text is currently showing in grey instead of black.  Is there an easy fix for this? 

    The page in question is here - http://www.louisegreen.ca/tedx/

    Thank you!


  • [deleted] replied

    Hi Louise,

    Thanks for your kind words

    Can you please add the code below to LaboratorCustom CSS

    .wpb_wrapper .wpb_text_column ol li, .wpb_wrapper .wpb_text_column ul li {
        color: #000 !important;
    }
    

    Will set this ticket as solved from here.

    P.S: If you like our theme, it would help us a lot if you could give us five star rating on themeforest from your Downloads tab, (if you don't know how, just open this link).

    A huge thank you from Laborator in advance and have a great weekend!