-
Posts
237 -
Joined
-
Last visited
-
Days Won
8
Shadmon last won the day on May 19
Shadmon had the most liked content!
Personal Information
- Website
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Shadmon's Achievements
-
Dynamic 301 Redirects for All Pages - Upper Case
Shadmon replied to courseseller19's topic in Customize with code
Unfortunately, there is no dynamic approach. I suggest you use this tool to lowercase your URL. It will take you a few seconds and you will be safe. https://convertcase.net/ let me know if it helps!- 4 replies
-
- 404-error-page
- redirect
-
(and 2 more)
Tagged with:
-
Dynamic 301 Redirects for All Pages - Upper Case
Shadmon replied to courseseller19's topic in Customize with code
Your sample code won't work. You can simply change the URL slug from uppercase to lowercase manually. Please check the instructions here: https://support.squarespace.com/hc/en-us/articles/205814578-URL-slugs- 4 replies
-
- 404-error-page
- redirect
-
(and 2 more)
Tagged with:
-
Shadmon reacted to a post in a topic: How do I reduce the top padding on just one page (Brine template)
-
How do I reduce the top padding on just one page (Brine template)
Shadmon replied to simonsp's topic in Customize with code
You can add this code to Website > Website Tools > Custom CSS. Let me know if it helps! #collection-66723495be7816578c67941e .Main-content { padding-top: 15px; } -
Shadmon reacted to a post in a topic: Reduce space at top of this custom landing page
-
Reduce space at top of this custom landing page
Shadmon replied to Rolaa's topic in Customize with code
You can add this code to Website > Website Tools > Custom CSS. Let me know if it helps! #collection-667ad5ed1ae7d900c586ab76 .Main--page { padding-top: 0; } #collection-667ad5ed1ae7d900c586ab76 .Main-content { padding-top: 30px; } -
Amend the height of my scrolling feature
Shadmon replied to megancecile91's topic in Customize with code
Can you share the password for the website? -
SEOjettana started following Shadmon
-
GemmsyA reacted to a post in a topic: How to create vertical timeline in Squarespace
-
nayu_vuhido75 reacted to a post in a topic: Blinking Homepage on Mobile Only
-
nayu_vuhido75 reacted to a post in a topic: how to left justify logo only and right justify navigation buttons for all pages
-
nayu_vuhido75 reacted to a post in a topic: Match drop down menu style to site header
-
nayu_vuhido75 reacted to a post in a topic: Parallax Scroll BG
-
nayu_vuhido75 reacted to a post in a topic: I want to add two buttons in my navigation
-
Shadmon started following Reduce space between mobile drop down menu page links?
-
vokoru_yoki16 reacted to a post in a topic: Header after
-
vokoru_yoki16 reacted to a post in a topic: How do you Center-Align the Mobile Store Page Layout?
-
vokoru_yoki16 reacted to a post in a topic: h4 font styling css not working
-
vokoru_yoki16 reacted to a post in a topic: How to make an iFrame pop up when a button is clicked
-
Reduce space between mobile drop down menu page links?
Shadmon replied to turnerelectrical's topic in Customize with code
Hi @turnerelectrical You can adjust the space between the items by increasing the margin 0px. If you add this css, you will see no space between the items: adjust the margin px for the height. .header-menu-nav-item a { margin: 0px auto; } Let me know if it works. -
Can you share the page url so that I can check and help you.
-
Match drop down menu style to site header
Shadmon replied to turnerelectrical's topic in Customize with code
Can you add this css and let me know if it works? .header-nav .header-nav-item--folder .header-nav-folder-content { backdrop-filter: blur(4px); background: transparent !important; } -
Yes, you can do that. Change the background image url for <600px devices. @media (max-width: 600px) { header#header::after { background-image: url("https://svgshare.com/i/15tm.svg"); } }
-
Yes, you can do that. Change the background image url for <600px devices. @media (max-width: 600px) { header#header::after { background-image: url("https://svgshare.com/i/15tm.svg"); } }
-
Okay, Please update the other CSS code with this. It's the final one. It should work. Let me know how it goes. @media (max-width: 600px) { .header .header-title--use-mobile-logo .header-mobile-logo img { max-height: 40px; } .header-announcement-bar-wrapper { padding-bottom: 5px !important; padding-top: 10px !important; } header#header::after { height: 20%; margin-top: -5px; } }
-
To achieve a scrollable homepage with navigation to other pages without clicking on each page's title then create a single page layout where all the content from different pages is displayed sequentially on the homepage and on the navigation bar you can create anchor links to the sections.
-
@Timma89 If you want to target smaller devices then please add this code too: @media (max-width: 380px) { header#header::after { margin-top: -5px; } } Let me know how it goes.