Jump to content

heyawaiszahid

Circle Member
  • Posts

    4
  • Joined

  • Last visited

Everything posted by heyawaiszahid

  1. Hi @AJPerformance The content of your footer overlaps on the reduced window size because it does not have enough room to display all columns in a row. You can fix it with the help of below code. @media screen and (max-width: 1356px) { #footer-sections { .sqs-layout [class*="sqs-col"] { float: none !important; width: auto !important; } .page-section.content-width--medium:not(.content-collection) .content { width: 100%; } } } You need to put above code in Custom CSS under Design.
  2. Hi Jessica, Every Squarespace page has a unique ID. You can change the color of "Get a Quote" button on a specific page by simply targeting your button in css by first passing that ID as a reference. So in your case, the below code will work #collection-6267e45d8e1f69789adf7b8a { .header-actions-action--cta { .sqs-button-element--primary { background-color: #000; } } } You need to put this code in Custom CSS under Design.
  3. Hi @qcjacques and @DaniCal You can change the English name of month to Norwegian on the calendar block with the help of below code. <script> let en2nor = { January: "Januar", February: "Februar", March: "Mars", April: "April", May: "Mai", June: "Juni", July: "Juli", August: "August", September: "September", October: "Oktober", November: "November", December: "Desember", }, $target = $(".calendar-block h1 > div"), month = $target.text().split(" ")[0]; $target.text($target.text().replace(month, en2nor[month])); </script> You need to put this code in the Code Injection FOOTER under Settings > Advanced. Please note that it requires jQuery. Since it was already added to the reference website, you can skip the next step. Add jQuery to your website by adding below code in the Code Injection HEADER under Settings > Advanced. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> PS: This is my first attempt to answer a question here. I hope this helps 🙂
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.