• Resolved mravery108

    (@mravery108)


    So I didn’t know if this was possible or if anyone could help me with this. For Sidebar 2, I’d like to change “More” to “Share.” I found where to do this with CSS. However, not being that familiar with it, I’m not sure if the next part is possible. I’d like to add a few of the same icons that are in the “Follow” part of the sidebar (Twitter, Facebook, Google +) but instead link them to share my site on one of those. I figure this might be somewhat complicated to do and would be easier to just add different icons but I want to keep the look consistent. Any help would be greatly appreciated. Thank you.

Viewing 1 replies (of 1 total)
  • If you want to add the markup manually and then modify after that, then here is an example:

    <ul class="social-links">
    
    <li><a href="#" title="Twitter" class="social-tooltip">
    <i class="fa fa-twitter"></i>
    </a>
    </li>
    
    <li><a href="#" title="Facebook" class="social-tooltip">
    <i class="fa fa-facebook"></i>
    </a>
    </li>
    
    </ul>

    It would be added right after the </p> tag in sidebar-2.php.

Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar 2’ is closed to new replies.