Muntzer
Circle Member-
Posts
14 -
Joined
-
Last visited
Personal Information
-
Location
Norway
Muntzer's Achievements
-
How to apply different layouts on blog pages
Muntzer replied to Muntzer's topic in Customize with code
Figured it out. I found the section ID and added this code to get 1x1 aspect ratio on the spesific blog page section[data-section-id="6548b8bd5a2091267a1ee1b2"] .blog-basic-grid .image-wrapper { padding-bottom: 100%; } -
How to apply different layouts on blog pages
Muntzer replied to Muntzer's topic in Customize with code
@melody495 Thanks for your answer. When formatting the layout of a single blog page, the settings affects all the other blog pages as well. -
I have 3 different blogs on my site; articles, videos and podcast. I would like to apply a different layout for the podcast blog. While articles and videos has a layout with 2 columns and 16:9 aspect ratio, I would like the podcast page to have a 3 column and 1x1 aspect ratio layout. Can anyone help with a code to achieve this?
-
Place a ticket embed below title and time/date on event page
Muntzer replied to Muntzer's topic in Code Blocks
Thank you @tuanphan for responding! https://kknomics.squarespace.com/config/pages/64882c95d701e32bf6270861 -
Hi! Can anyone help me with a code that allows me to place a ticket embed code below the Title/Time area on an Event page? I've god multiple events and different codes for each page. 😀 Here's the embed: <div id="checkin_registration"></div> <script> (function(w, d) { d.event_id = 59065; var headTag = d.getElementsByTagName('head')[0]; var script = d.createElement('script'); script.src = 'https://registration.checkin.no/registration.loader.js'; script.async = 1; script.crossOrigin = 1; headTag.appendChild(script); })(window, document); </script>
-
EarvinChong reacted to a post in a topic: Is it possible to set a blog post date in future (not schedule)
-
EarvinChong reacted to a post in a topic: Is it possible to set a blog post date in future (not schedule)
-
Beyondspace reacted to a post in a topic: Put excerpt above title on Blog page
-
Muntzer reacted to a post in a topic: Put excerpt above title on Blog page
-
Muntzer reacted to a post in a topic: Put excerpt above title on Blog page
-
tuanphan reacted to a post in a topic: Make captions center align (after adding captions on hover css)
-
Site URL: http://www.kknomics.squarespace.com/program I'd like to put the excerpt above the title on blog pages/summary, so that the order from top to bottom is image > excerpt > title. Can anyone help me with the required CSS?
-
paul2009 reacted to a post in a topic: Is it possible to set a blog post date in future (not schedule)
-
Is it possible to set a blog post date in future (not schedule)
Muntzer replied to Muntzer's topic in Customize with code
@paul2009 Thanks so much for your help! -
Muntzer reacted to a post in a topic: Is it possible to set a blog post date in future (not schedule)
-
Site URL: https://kknomics.squarespace.com/program I've used a Blog to create an achive for festival events in 2017-2021. I've added Squarewebsite's Universal Filter to be able to navigate between tags and categories. I want to publish future events as blog posts - for the festival that will occur in october 2022. Is it possible to overrun the Squarespace settings and allow a future date as "published date" (NOT scheduled) ? When I try to choose October 21st 2022, it automatically chooses today's date... I chose not to use Event page because the limit of 30 past events was too low. Does anybody know how this can be done? 🙌
-
Make captions center align (after adding captions on hover css)
Muntzer replied to Muntzer's topic in Customize with code
Added this and now it works 🤓 text-align-last: center; -
Site URL: https://kknomics.squarespace.com/deltakere I've created a simple grid gallery and added CSS so that the captions would appear on hover. The captions are nicely centered when only using one line, but when a line breaks they're aligned to the left. How do I make the text remain centered? This is the CSS I've used 🙂 .gallery-caption { position: absolute; top: 0; left: 0; background: rgba(232,78,27,0.6); /* overlay color */ height: 100%; max-width: unset; padding: 0; opacity: 0; pointer-events: none; } .gallery-caption-wrapper { display: flex; align-items: center; /* center vertically */ justify-content: center; /* center horizontally */ } .gallery-caption-content { font-size: 1.6rem !important; /* caption font size */ font-weight: 600 !important; color: white; /*caption font color */ } .gallery-grid-item { position: relative; } .gallery-grid-item:hover .gallery-caption { opacity: 1; } .gallery-caption-grid-simple { transition-delay: 0ms; }