Source Theme Issues

Hi there,
Need a quick help

  1. For official “source” theme there is so much space being wasted in the footer, how can we remove that or adjust it ?

  2. how to have a menu on the footer

  3. how to interchange the position of the subscribe section at the bottom to the links
    images attached for reference.

1 Like

Can anyone help with this? thanks.

Howdy Ghostuser, welcome to the forum!

  1. See below. This goes into the code injection header.
<style>
.gh-footer-bar {
margin-bottom: 20px; // adjust until you like how it looks 
}
.gh-footer-signup {
padding-bottom: 20px;
}
</style>
  1. Looks like there’s already a menu on the footer - do you just want them to swap (#3)?
    Insert between the <style> tags:
.gh-footer-inner.gh-inner {
    display: flex;
    flex-direction: column;
}
.gh-footer-signup {
     order: -1;
}

wow, many thanks, really appreciate it.

menu on the footer → i was looking for multiple links under one link kind of menu. more like drop down menu with links.

2 Likes