I would like to place the social media icons on the same line that is also the starting point of the text under Contact.
Also I would like to be able to change the size of the icons.
Website: edensbakehouse.nl
Password: yuidri
A user wants to reposition social media icons in their footer to align horizontally with the “Contact” section text and adjust the icon size.
Current Status:
Solutions Provided:
Three community members offered CSS code solutions to reposition the icons:
.footer-block--newsletter class with responsive media queries.svg-wrapper width adjustment (35px)Technical Details:
Next Step:
The user is awaiting guidance specifically on increasing icon size beyond what was initially provided.
I would like to place the social media icons on the same line that is also the starting point of the text under Contact.
Also I would like to be able to change the size of the icons.
Website: edensbakehouse.nl
Password: yuidri
span.svg-wrapper {
width: 35px !important;
}
@media(min-width:750px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
width: 37.3%;
margin: auto;
display: flex !important;
justify-content: flex-start !important;
margin-top: 0 !important;
}
}
@media(min-width:1024px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
padding-left: 5px !important;
}
}
@media(max-width:1023px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
padding-left: 0px !important;
}
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hello, @EdensBakehouse
@media (min-width: 769px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
margin: auto;
display: flex;
justify-content: flex-start;
margin-top: 0 !important;
padding-left: 35rem !important;
}
}
@media (max-width: 768px) {
.footer-block--newsletter.scroll-trigger.animate--slide-in{
padding-left: 0px !important;
}
}
Thanks!
Thank you for helping me with step 1.
Is there also a possibility to make the icons bigger? (step 2)