loylabel
Member-
Posts
56 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
loylabel's Achievements
-
This is something Squarespace will need to implement... not used variants should not show up if the combination doesnt match... I have the same issue and I spent hours trying to solve it until I landed in this topic. If there is a plugin to go around this I would buy it.
-
Is it possible somehow to show the product color variants under the product in the summary block? Maybe a code or a plugin? ty in advance
-
- css
- summary-block
-
(and 1 more)
Tagged with:
-
tuanphan reacted to a post in a topic: Help: Product page Title above the slideshow?
-
Help: Product page Title above the slideshow?
loylabel replied to loylabel's topic in Customize with code
For those with the same need I found a solution with this code injected in the footer <script> jQuery(document).ready(function($){ if (jQuery(window).width() > 767) { $('h1.ProductItem-details-title').insertAfter('nav.ProductItem-nav'); } }); </script> -
-
tuanphan reacted to a post in a topic: Help FIX mobile view with code block
-
Hey Ziggy! I ended up doing separated code blocks for each part... 🙂
-
Hey Ziggy! the website is https://www.theinteriordoors.com/ please take a look, on mobile the code I added in the footer looks like the image below. The table has 3 columns, and on mobile they are too narrow, would be better if it could be one cell below the other one.
-
Hello, I m workin to improve the look of my company website, and I created a footer with a code block using A.I. It looks perfect on desktop view but in mobile view its veeeeery messed up and I cant seem to fix it, below is the code and the website is theinteriordoors.com <!DOCTYPE html> <html> <head> <style> table { width: 75%; border-collapse: collapse; table-layout: fixed; margin-left: auto; margin-right: auto; } th, td { border: 0px solid black; padding: 20px; color: white; text-align: left; } th { background-color: ; } th { font-size: 28px; font-weight: normal; } .social-icon { display: inline-block; vertical-align: middle; margin-right: 20px; } .info-icon { display: inline-block; vertical-align: middle; margin-right: 10px; width: 25px; /* Adjust the width for information icons */ height: 25px; /* Adjust the height for information icons */ } .opening-hours { display: grid; grid-template-columns: 200px 1fr; grid-column-gap: 10px; align-items: center; } .day { font-weight: normal; } .footer-row { background-color: #332D2D; color: white; text-align: center; } </style> </head> <body> <table> <tr> <th>ABOUT OUR COMPANY</th> <th>CONTACT US</th> <th>OPENING HOURS</th> </tr> <tr> <td>We are a construction materials and services store that serves the entire Broward County region. With over 5 years of experience and family-run, we pride ourselves on providing the best customer service to our clients.</td> <td> <img src="/s/icon_location_footer.png" class="info-icon"> 1960 N Federal Hwy<br> Pompano Beach, 33062<br><br> <a href="tel:+19545976373"> <img src="/s/icon_phone_footer.png" class="info-icon"> (954) 597-6373 </a><br><br> <a href="mailto:cs@axehomeanddesign.com"> <img src="/s/icon_mail_footer.png" class="info-icon"> cs@axehomeanddesign.com </a> </td> <td> <div class="opening-hours"> <div class="day">Monday to Friday:</div> <div>9am - 5pm</div> <div class="day">Saturday:</div> <div>11am - 4pm</div> <div class="day">Sunday:</div> <div>Closed</div> </div> </td> </tr> <tr> <td> <a href="https://www.facebook.com/axehomedesign/" target="_blank"> <img src="/s/icon_fb_white.png" class="social-icon" style="width: 55px; height: 55px;"> </a> <a href="https://www.instagram.com/axehomeanddesign/" target="_blank"> <img src="/s/icon_insta_white.png" class="social-icon" style="width: 58px; height: 58px;"> </a> <a href="https://wa.me/19542805688" target="_blank"> <img src="/s/icon_whats_white.png" class="social-icon" style="width: 48px; height: 48px;"> </a> </td> <td></td> <td></td> </tr> </table> </body> </html>
-
If someone can gimme a little help, I am trying to align the secondary nav text to the squarespace header button to the right, but I cant figure it out with code, to many containers in the header are driving me nuts... below is a picture of what I need, the website is https://flute-paddlefish-shcc.squarespace.com/
-
I wonder if I can add a saved section into the product additional information field... there is not option to add a section much less a saved section... If I can somehow add a saved section I would create a new blank page (that visitors wont have access), create my session and just add it to the additional information in the product edit.
-
Is there any way to show the product variants (in this case colors) in summary blocks?
-
- summary-block
- variants
-
(and 1 more)
Tagged with:
-
Worked! Ty! Dumb me 🙂
-
Hello, I was able to change the text color of the header navigation, BUT doing so it cancels the hover effect on my css... any tips? .header-nav-item a:hover { color: #ED184B; font-weight: 400; } .header-nav-item a { font-weight: 400; color: #333333 !important; }