Manu_M
Member-
Posts
10 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Manu_M's Achievements
-
Hi, I hope this message finds you well! I recently discovered a website (https://ui.aceternity.com) with pre-made component codes. However, due to my lack of knowledge, I'm uncertain whether I can customize my Squarespace portfolio by injecting the code I found there... for example, I would like to add this card hover effect https://ui.aceternity.com/components/card-hover-effect. --- Code injection is possible with my current Squarespace subscription Appreciate any help! Thanks
- 1 reply
-
- code-injection
- code
-
(and 1 more)
Tagged with:
-
Hi, did that help you? I faced a similar situation, and what did the trick for me was this: a span:hover { text-decoration: underline; color: #F9C761 } When dealing with adding links to specific words within a text box, like a paragraph, the HTML structure often involves a <div> containing a <p> with an <a> for the link, and then a <span> for styling effects. To make sure the hover effect (underline and color change) only applies to the linked words, the provided code comes in handy. Keep in mind that it has a global impact, so if your text has a link in the footer, the hover effect will apply there as well. On the other hand, when working with navigation items, things are more straightforward. You can simply use: a:hover { /* Add your styling here */ } Hope this helps!
-
Manu_M reacted to a post in a topic: How To: Remove 'faint opacity color' when hovering over a button
-
Why my background art does not have the motion?
Manu_M replied to Sienna's topic in Customize with code
Hi! I experience the same behavior in Safari. However, I do have motion for my background in Google Chrome -
Autoplay Slideshow on homepage
Manu_M replied to NashvillePhotographer's topic in Customize with code
I'm also curious about that code -
Ziggy reacted to a post in a topic: Remove 'Play-Button' from Background-Art
-
I appreciate the quick reply, but I found my mistake! I had a floating bracket in my code that was causing errors.
- 14 replies
-
- accessibility
- background
-
(and 1 more)
Tagged with:
-
I'm trying to achieve the same, but, the Custom CSS doesn't seem to be working for me. I suspect I might be doing something wrong-can someone help? (my website: https://manu-ux.squarespace.com/)
- 14 replies
-
- accessibility
- background
-
(and 1 more)
Tagged with:
-
Hi! I currently have a collection of images that I'd like to enhance by adding anchor links, which will be used to connect these images to specific accordions on the same webpage. By clicking on an image, I intend to have the user directed to a particular accordion section that corresponds to the content of the image. How can I implement this? Thank you in advance!