• Resolved dassein

    (@dassein)


    Hey there,
    Using Goran for a while for a small company website. I’d like to remove the footer where it writes “Proudly powered by WordPress | Theme: Goran by WordPress.com.” and replace it with some icons. Hope you can help how to remove that sentence and insert icons on that field.

    Thanks a lot!
    http://www.vinebedding.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can hide the footer credit with this custom CSS:

    .site-info {
      display: none;
    }

    You can try repositioning your social media icons in your footer widget so they move to the bottom left with this custom CSS. I’ve put it in a media query so it only affects larger screens but you can adjust as you like:

    @media screen and (min-width: 1020px) {
      .site {
         position: relative; /* relative position parent element so  absolute positioning will work on the child */
      }
      #nav_menu-2 .widget-title {
         display: none; /* hide widget title */
      }
      .menu-social-menu-container {
         bottom: -12px;
         left: 20px;
         position: absolute;
      }
    }
    Thread Starter dassein

    (@dassein)

    Thanks a lot.

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding icons to footer’ is closed to new replies.