Viewing 1 replies (of 1 total)
  • If I’m understanding correctly you’d like to move the social icons to the top left instead of the top right where they are now? On line 393 of your css you can simply change right: to left: to position them to the left. I hope this helps. looks like you’ve got the icons horizontal now.

    .social {
        margin: 0;
        list-style: none;
        position: absolute;
        right: 10px; /*change right to left*/
        top:10px;
        /* float: left; */
    }
Viewing 1 replies (of 1 total)

The topic ‘Moving Links/ Social Icons’ is closed to new replies.