-
Posts
151 -
Joined
-
Last visited
Personal Information
- Website
Recent Profile Visitors
2,142 profile views
LoftyDevs-Website-Designer's Achievements
-
tuanphan reacted to a post in a topic: Add second button on Event page
-
LoftyDevs-Website-Designer reacted to a post in a topic: Add second button on Event page
-
Markjons started following LoftyDevs-Website-Designer
-
LoftyDevs-Website-Designer started following smorsee
-
LoftyDevs-Website-Designer started following gdmartino
-
LoftyDevs-Website-Designer started following thanksdeej
-
LoftyDevs-Website-Designer started following StevenPDX
-
LoftyDevs-Website-Designer started following FizaHamd
-
LoftyDevs-Website-Designer started following Andrew9
-
LoftyDevs-Website-Designer started following JRVirtualPathways
-
LoftyDevs-Website-Designer started following writersbloch
-
LoftyDevs-Website-Designer started following klc01
-
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?
-
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?
-
Make logo bigger in Email Template
LoftyDevs-Website-Designer replied to jasonconway's topic in Customize with code
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:
-
Make logo bigger in Email Template
LoftyDevs-Website-Designer replied to jasonconway's topic in Customize with code
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:
-
Change MOBILE breadcrumb color
LoftyDevs-Website-Designer replied to JamestownStudio's topic in Other
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; } } -
Change MOBILE breadcrumb color
LoftyDevs-Website-Designer replied to JamestownStudio's topic in Other
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; } } -
Mobile Glitch/Crash on one page
LoftyDevs-Website-Designer replied to JasmineFoster's topic in Pages & Content
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
LoftyDevs-Website-Designer 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>