Viewing 3 replies - 16 through 18 (of 18 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You’d wrap your social icons in a <div> and then float it right.

    Thread Starter sharongolod

    (@sharongolod)

    Like this?

    <div>
    <a><img src="https://sharongolod.com/wp-content/uploads/2013/05/Facebook30.png"></a><a><img src="https://sharongolod.com/wp-content/uploads/2013/05/LinkedIn30.png"></a><a><img src="https://sharongolod.com/wp-content/uploads/2013/05/Google+30.png"></a>
    
    flot: right;
    
    </div>

    [In future remember to highlight your code and then press the “code” button before posting]

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    No, like this in your Child Theme header.php file (after the </hgroup> tag):

    <div class="social-icons">
     <a>
      <img src="https://sharongolod.com/wp-content/uploads/2013/05/Facebook30.png" />
      </a>
     <a>
      <img src="https://sharongolod.com/wp-content/uploads/2013/05/LinkedIn30.png" />
     </a>
     <a>
      <img src="https://sharongolod.com/wp-content/uploads/2013/05/Google+30.png" />
     </a>
    </div>

    And then this in your Child Theme style.css file:

    #masthead .social-icons {
     float: right;
    }

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Add social media icons to navigation bar’ is closed to new replies.