Support » Plugin: Simple Social Icons » Move icons to bottom of header

Viewing 1 replies (of 1 total)
  • Hey there.

    You can add some custom CSS in your ‘Master Theme’ child theme’s style.css file in order to adjust the icons. Adding the following CSS snippet is the simplest way to achieve what you’re after:

    #header .simple-social-icons {
    margin: 75px 0 0;
    }

    Or, if you think you’re ever likely to add/remove content from or change the size of the header, this slightly longer option may be a little more ‘future-proof’:

    #header {
    position: relative;
    }
    
    #header .simple-social-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 5px;
    }

    Hope either of these help. 🙂

    Let me know if you have any further questions surrounding this.

Viewing 1 replies (of 1 total)
  • The topic ‘Move icons to bottom of header’ is closed to new replies.