Dawn 8.0 / Increase size & change location of Instagram & Facebook buttons

Hi All,

Am the owner of OurHatsDeserveBetter.com. I am not satisfied with the current size & location of the Instagram & Facebook button. Far too small and accessibility somehow limited by the location in the footer.

For the size I have tried an accepted solution (code to be added to theme-liquid:

span.icon.icon-instagram { font-size: 25px !important; }

But it does not work.

For the location, I would like to be able to move it outside of the footer, in the template part.

Is there a simple way to do that?

Best

Eric

1 Like

HI! ourhatsdeservebetter.com

Please use this CSS code to change font-size of icon

.list-social__item .icon {
    height: 25px !important;
    width: 25px !important;
}

To move section, you will need to move social code from footer.liquid file

Hi @bibigab

This is Noah from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Noah | PageFly

Thanks Dan

Is there a way to differentiate size for desktop & mobile? (current size on mobile is fine but too small on desktop)?

How to move the social code?

Sure, please use this code so the change will apply for desktop only

@media screen and (min-width: 993px) {
.list-social__item .icon {
    height: 25px !important;
    width: 25px !important;
}
}

Hi Noah! Are you sure it is not cut and paste mistake? I do not see the “link” to the Instagram and Facebook icons?

Thanks Dan. I cannot use your solution : I have reached the custom CSS 500 characters limit…

You can add this code to your theme.liquid file before tag


Tks Dan. It works like a charm. Is there a way to change location of these buttons on my product & collection pages without using the custom css for which I have reached already the limit?..

Sorry my bad, because i styled the wrong section

as you can see in my screenshot, i increased the size of the svg payment icon


You can try with this code, with the same instructions above