Dawn them social media icons footer padding (desktop only)

website : https://lslelegance.myshopify.com

need help with the following :

I require the following :

put the social media icons padding further up in the footer to be further up only in desktop version (mobile is fine)

@SetuBridge_1

1 Like

Hello @lslelegance ,

Greetings!!

Please follow these steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
footer.footer .footer__content-top .footer-block--newsletter{
  align-items: flex-start !important;
}

Output :

1 Like

@SetuBridge_1 worked thanks ! is there any chance to reduce the empty space between now as show in the image ? only on desktop version please , thanks

1 Like

Hello @lslelegance

Greetings!!

Please follow these steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
footer.footer .footer__content-top{
  padding-bottom: 0 !important;
}

Output :

1 Like

@SetuBridge_1 is perfect on desktop version however on mobile version the social media icons have little space in the footer to the line footer can I push just the mobile version a little padding further up ? thanks so much !

@SetuBridge_1 can you assist for the above issue please also ? thank you so much !

Hello @lslelegance

Please follow these steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
@media screen and (max-width: 750px){
   footer.footer .footer__list-social {
     margin-top: 0;
   }
}

@SetuBridge_1 unfortunately didn’t work sorry it just moved the news letter further closer to the social icons. I want the social icons to go further up the line but keeping same spacing of the items above in the mobile version.

Hello @lslelegance

Please follow these steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
@media screen and (max-width: 750px){
   footer.footer .footer__list-social {
     margin: 15px 0 !important;
   }
}
#menu-drawer .menu-drawer__utility-links .menu-drawer__account{display:none !important;}

1 Like