-
Posts
153 -
Joined
-
Last visited
Personal Information
- Website
-
Location
Ahmedabad, India
Recent Profile Visitors
2,496 profile views
Widle's Achievements
-
Widle started following joewilliams
-
Widle started following williamkrell
-
Widle started following Sauceboss770
-
Widle reacted to a post in a topic: What's new at Squarespace — September 2024
-
Widle reacted to a post in a topic: Tell us about yourself!
-
Widle changed their profile photo
-
tuanphan reacted to a post in a topic: Add second button on Event page
-
@tuanphan This is regarding the Event Listing Page. I’m working on adding two buttons to the page and believe I've found a solution. I appreciate your prompt response and support—it means a lot to us.
-
Hello, I would like to add a second button on my event page that opens a popup widget containing the Eventbrite embed code when clicked. Could you please provide the custom code required to achieve this in Squarespace? Thank you in advance.
-
Graphixmain reacted to a post in a topic: Is it possible for an image to be used as blog page background?
-
POLL: Suggestion for New Contributor Permissions Level: "Developers"
Widle replied to CesO's topic in Customize with code
Yes, having a dedicated "Developer" permission category would be incredibly helpful for accessing CSS, Advanced Code, and relevant settings. -
Hello , I want back button in checkout page. It is possible ? If possible you can share custom code or Optional (third party plugin) for this . Thank you in advance.
-
tuanphan reacted to a post in a topic: Is it possible for an image to be used as blog page background?
-
In email campaigns, custom CSS is not provided, but you can resize and enhance your logo through the available design settings.
- 3 replies
-
- email-campaigns
- email marketing
-
(and 1 more)
Tagged with:
-
Create hover effect on dropdown menu of primary navigation
Widle replied to Mathias654321's topic in Other
try this code .Header-nav-folder { padding:0px!important; } -
Create hover effect on dropdown menu of primary navigation
Widle replied to Mathias654321's topic in Other
hello @Mathias654321 try this code .Header-nav-folder-item:hover { background-color:#cff491; } -
Achieve hover effect only on button, and not on whole block
Widle replied to Mathias654321's topic in Other
hello @Mathias654321 using this CSS code .medium-button-style-raised .sqs-block-button .sqs-block-button-element--medium:hover { background-color:#cff491; } -
hello @jasonconway Are you utilizing email campaigns? If so, you can set default components. I can provide a screenshot to illustrate how this is done.
- 3 replies
-
- email-campaigns
- email marketing
-
(and 1 more)
Tagged with:
-
try this code using important Properties @media only screen and (max-width: 600px) { .ProductItem-nav .ProductItem-nav-breadcrumb, .ProductItem-nav .ProductItem-nav-pagination { display: block!important; color: black!important; padding: 37px 2px; } }
-
Try this code in Website tools >> custom css @media only screen and (max-width: 600px) { .ProductItem-nav .ProductItem-nav-breadcrumb, .ProductItem-nav .ProductItem-nav-pagination { display: block; color: black; padding: 37px 2px; } }
-
hello @JasmineFoster I believe the URL you provided may be incorrect. I have found a potential site that might be relevant: https://theenrichededucator.com/. Please check this link to see if it aligns with your needs.
-
Unable to make any changes to the mobile menu view
Widle replied to VeeBee's topic in Pages & Content
Hello @VeeBee Please consider using this style option to modify the mobile view I'll send you a screenshot Alternatively, please use this CSS code. .Mobile-menu { background-color: #your-color-code; } .Mobile-menu .Mobile-nav-item { font-size: your-desired-size; /* Example: 16px */ } .Mobile-menu { background-image: url('your-image-url'); background-size: cover; } .Mobile-menu { padding-top: 10px; } .Mobile-nav-item { margin-top: 0; } .contact-button { display: block; padding: 10px; background-color: #your-color; color: #fff; text-align: center; margin-top: 20px; /* Adjust as needed */ } Javascript code <script> document.addEventListener('DOMContentLoaded', function() { var menu = document.querySelector('.Mobile-menu'); if (menu) { var contactButton = document.createElement('a'); contactButton.href = '#contact'; // Adjust link as needed contactButton.textContent = 'Contact'; contactButton.className = 'contact-button'; // Add class for styling menu.appendChild(contactButton); } }); </script>