Viewing 4 replies - 1 through 4 (of 4 total)
  • Tanay

    (@tanaykhandelwal-1)

    Hello unachicayeye,
    you’re doing well:)

    Have a look at convac-lite/SketchBoard/includes/options/theme-options.php around Line:220 and convac-lite/header.php, I think you will get it done yourself now and agin it will be better to use Child_Theme.

    For any queries feel free to ask on smart and vigilant support of WordPress.
    Have a nice day!!!

    Thread Starter unachicayeye

    (@unachicayeye)

    Hi Tanay,
    I’m afraid I didn’t understand a word here 0:) I searched for social icons but dind’t find anything, can you please help me?
    Thanks,
    Berta

    Tanay

    (@tanaykhandelwal-1)

    hi unachicayeye,

    Huh….you are afraid. Ok! no worries, just go to theme folder open header.php file go at the end and add this line just above </ul>.

    <li class="instagram-icon"><a target="_blank" href="your-instagram-link"><span class="fa fa-instagram" title="Instagram"></span></a></li>

    replace your-instagram-link with the actual url. After this your code should look something like

    <?php if(convac_lite_get_option($convac_lite_shortname.'_youtube_link')){ ?><li class="youtube-icon"><a target="_blank" href="<?php echo esc_url(convac_lite_get_option($convac_lite_shortname.'_youtube_link','timeliner')); ?>"><span class="fa fa-youtube-play" title="Youtube"></span></a></li><?php } ?>
    <li class="instagram-icon"><a target="_blank" href="your-instagram-link"><span class="fa fa-instagram" title="Instagram"></span></a></li>
    				</ul>
    			</div>
    			<!-- Social Links Section -->
    
    		</div>
    
    	<!-- header image section -->
    
    <div id="main" class="clearfix">

    And add following css in child theme style.css or using custom css plugin

    .social_icon li.instagram-icon a:hover {
      background: none repeat scroll 0 0 #cc332d;
    }

    This helped me a lot! Thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add more social icons’ is closed to new replies.