• Resolved yukfun

    (@yukfun)


    Hi,

    How do I remove the little file icons next to the links under Recent Posts in my footer? > https://www.yukfun.co.uk

    Also I just updated to the latest version of storefront and our logo has shrunk!

Viewing 6 replies - 1 through 6 (of 6 total)
  • LogoLogics

    (@logologics)

    Hi Yukfun!

    To remove those little icons in the footer widgets add this code in your child theme’s style.css:

    .footer-widgets ul li:before {
        content: none;
    }

    Add the snippet below to even remove them in the handheld mobile menu:

    .main-navigation ul li a:before {
      display: none;
    }

    Have fun!
    Annie

    LogoLogics

    (@logologics)

    As far as the logo goes.

    You should be able to make it larger or smaller by adding this code into your child theme’s style.css:

    .site-header .custom-logo-link img {
     width: 300px;
     height: 200px;
    }

    adjust the width and hight to your own preferences ofcourse.

    Annie

    • This reply was modified 8 years ago by LogoLogics.

    Thanks so much for helping out with support @logologics ??

    You’re welcome James!

    Thread Starter yukfun

    (@yukfun)

    It worked thank you!

    Glad it worked Yukfun!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove icons under Recent Posts in footer + logo shrunk after update’ is closed to new replies.