Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Split colums in footer for Dawn theme.

Solved

Split colums in footer for Dawn theme.

TOE_BEE
Shopify Partner
21 0 4

I am looking to add a second column in my footer to add a second menu onto, so I can direct customers to support areas but also to retarget them back to my sales channel. 

I would also like to enlarge the social icons.

 

Here is my preview URL - https://h3a2rmpyakjmngoo-7322239031.shopifypreview.com

See a screenshot of what I have currently in place. 

Accepted Solution (1)

BlackCro
Shopify Partner
101 19 16

This is an accepted solution.

Without getting into custom code, you could add a new block to the footer. Through Online Store, Customize in the right hand panel select the footer and then +Add Block. Here you can add an additional menu which you would need to create in Online Store, Navigation. 

 

As for the social icons, in component-list-social.css there is .list-social_item .icon which is controlling their size, I would stick to using rem units, so try 5rem and see if that is a suitable size. 

 

.list-social__item .icon {
  height: 5rem;
  width: 5rem;
}

 

Hope this helps

BlackCro.co.uk

CRO & Development Agency



Better Forms - Get a better contact form today!

View solution in original post

Replies 2 (2)

BlackCro
Shopify Partner
101 19 16

This is an accepted solution.

Without getting into custom code, you could add a new block to the footer. Through Online Store, Customize in the right hand panel select the footer and then +Add Block. Here you can add an additional menu which you would need to create in Online Store, Navigation. 

 

As for the social icons, in component-list-social.css there is .list-social_item .icon which is controlling their size, I would stick to using rem units, so try 5rem and see if that is a suitable size. 

 

.list-social__item .icon {
  height: 5rem;
  width: 5rem;
}

 

Hope this helps

BlackCro.co.uk

CRO & Development Agency



Better Forms - Get a better contact form today!
TOE_BEE
Shopify Partner
21 0 4

Oh well now I feel silly! Here I thought it was in coding haha!

Thank you for the help 🙂