NEED A LITTLE MORE HELP?

After launch, you have 30 days of support included to fix any issues or for me to record any new help videos. Expect an invite you to my Slack Support channel.

After that, there are a few ways that I could support you going forward:

  • Keep your access to my Slack Support channel for £25 per month. Cancel / Re-join at any time. There is no minimum membership term.

  • Book in a discounted Power Hour. £125 > £110

  • I’ll also be launching new client support packages in 2025.

NOTES:

  • Always check the site on mobile after edits too! Editing causes things to shift

  • Handover Notes

CUSTOM CODE BACKUP

HEADER INJECTION

<style>
  .sqs-announcement-bar {display: none !important;}
</style>
FOOTER INJECTION

<script src="https://cdn.jsdelivr.net/gh/willmyerscode/split-nav@1/splitNav.min.js"></script>
CSS

.header-menu-nav-item a {
font-size: 17px;
letter-spacing: 0.1em;
line-height: 1.2em;
}


#header {
  --right-nav-links: 6;
  --link-spacing: 1.3rem;
  --title-spacing: 2.6rem;
  --left-alignment: left;
  --right-alignment: right;
  --site-title-width: 250px;
}

/* change header nav active style */
.header-nav-item--active a {
   background-image: none !important;
  color: ~'hsla(var(--darkAccent-hsl), 1)'!important;
}
/* add header nav hover effect */
.header-nav-wrapper a:hover {
 color: ~'hsla(var(--black-hsl), 1)'!important;
}

/* change default heading margin */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
}

/* move header social icons closer */
.header-actions--right .header-actions-action--social .icon:not(:first-child) {
    margin-left: .6vw;
}



/* wrap code blocks instead of scrolling */
.source-code {
    white-space: pre-wrap;
  background: #ffffff;
  border-radius: 30px;
  padding: 20px;
}