From footer to header

  • Unknown's avatar

    Does anyone know how I can edit the CSS to move the social media icons from the footer to the header?

    The blog I need help with is: (visible only to logged in users)

  • Let’s try this CSS which is applicable only for larger screens.
    On mobiles and tablets, social menu still stays in the footer. We can work on it later if you wish.

    @media only screen and (min-width: 1024px)  {
    nav.social-navigation {
        position: fixed;
        top:15px;
        right: 90px;
        z-index: 3;
    }
    
    .social-navigation li {
        border: none;
    }
    }
  • The topic ‘From footer to header’ is closed to new replies.