-
Posts
65 -
Joined
-
Last visited
Personal Information
- Website
-
Location
Madrid, Spain
Recent Profile Visitors
Vicks's Achievements
-
GlassedDev reacted to a post in a topic: Changing the word 'Source' on events listing page
-
tuanphan reacted to a post in a topic: Background hover on navigation "bumping" items
-
NadineS reacted to a post in a topic: Background hover on navigation "bumping" items
-
Code for partially sticky header in 7.0 Wexley?
Vicks replied to lina1570047784's topic in Customize with code
I cannot access the website. it says wrong password- 24 replies
-
Need code to target individual links for hover state (color)
Vicks replied to dross's topic in Customize with code
by the way, you can target individual links by their target ( href attribute ). if you are familiar with CSS, its written like this: [href='/path/to/your/link'] { your custom styles here } -
Need code to target individual links for hover state (color)
Vicks replied to dross's topic in Customize with code
go to setting > site availability, choose password protected. give any password, and then you can post the link with password here. -
Hosting Interactive Online Learning Courses on Squarespace
Vicks replied to SimoneSimian's topic in Customize with code
thats what came into my mind because articulate generates a static site. which you can host on netlify/github pages or S3, and then embed as iframe into your SS site. -
Vicks reacted to a post in a topic: Hosting Interactive Online Learning Courses on Squarespace
-
For input text font different between fields (help please!)
Vicks replied to Amandakrausz's topic in Customize with code
can you please share the website url. So I can check what is the font family in the other fields. It should normally be applied if you have changed it in the editor, but lets check in the code. -
Vicks reacted to a post in a topic: I'm at a loss...My form styling is suddenly broken
-
I'm at a loss...My form styling is suddenly broken
Vicks replied to mbockmaster's topic in Customize with code
Hi, I assume this code should add thick borders to every input boxes in the form. Because I no longer see the .field-element class in your form fields. For this, you can try changing the css to the following: .form-wrapper .field-list .field textarea, .form-wrapper .field-list .field input { background-color: #fff !important; border: 2px solid #000 !important; } !important is needed because I see that squarespace is applying a class directly to the input (for example: class="eTv7qUMqLR9lJxpIAC3F" ) and adding css. so you need to override it.- 36 replies
-
- form-block
- custom-css
-
(and 1 more)
Tagged with:
-
Hi, can you try instead of injecting the code in the footer. Use the Code block to inject it on the homepage only. Its the same place where you add a block on text, or image. There is an option "code" to inject code into only one page.
-
Vicks reacted to a post in a topic: Change Size/Placement of Summary Block Arrows
-
tuanphan reacted to a post in a topic: Change Size/Placement of Summary Block Arrows
-
tuanphan reacted to a post in a topic: Layout for Quantity dropdown
-
Code for partially sticky header in 7.0 Wexley?
Vicks replied to lina1570047784's topic in Customize with code
is it some custom css you are using? Can you share that?- 24 replies
-
Code for partially sticky header in 7.0 Wexley?
Vicks replied to lina1570047784's topic in Customize with code
Found the issue: You have this position: fixed !important on header. which is also setting top:0; Thats whats causing your menu to disappear on mobile. If I remove the top:0, it solves the issue. is it done with custom css or is it squarespace default ?- 24 replies
-
Code for partially sticky header in 7.0 Wexley?
Vicks replied to lina1570047784's topic in Customize with code
I see this: The topnav element is display:none. I am not sure what is causing it. because my script is only adding and removing a class called 'hide' in the #headerwrapper element. which is just moving it 100px up or down. it cannot hide the menu. Can you remove my script from the page, so that I can see the normal behavior? Also please send me the script which you have added to your website. Is it just this or is there some more lines ?- 24 replies
-
Code for partially sticky header in 7.0 Wexley?
Vicks replied to lina1570047784's topic in Customize with code
I do not see any navigation menu on your website neither on desktop nor on mobile. Looks like there is no item inside the topnav element. ( see your website code attached in image) Are you using some other scripts also on your site which might be malfunctioning and removing it? The script I provided only moves the header up and down 100px based on scroll position, it does not remove anything from HTML. So there must be something else causing it. can you explain how do I see the nav menu? If its caused by my script, can you remove my script only and check if the menu appears again? because I do not see the menus at all.- 24 replies
-
updated the original answer
-
here is code for the button .list-item a.sqs-button-element--primary { letter-spacing: 0em !important; } .list-item a.sqs-button-element--primary:hover { /* notice the 0.5 in the last argument in the hsla, thats alpha, 0.5 means 50% transparent. */ background-color: hsla(289.41,92.73%,10.78%,0.5) !important; } This will update the hover color also.
-
you can add code block and paste your embed code in it. https://support.squarespace.com/hc/en-us/articles/206543167-Code-blocks?platform=v6&websiteId=64431e6b45301c5a00f08373 there is also an embed type block. perhaps that might suit your need.
-
where are you injecting this code? are you adding it to advanced > code injection panel ? if you add a code block using add button in the homepage. I think it will only work on homepage. OR try changing the second line by this: const landingSection = document.getElementById('block-yui_3_17_2_1_1682011830342_7436');