Jump to content

creedon

Circle Member
  • Posts

    9,465
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by creedon

  1. It's not working because the code was designed for v7.1 as stated in my March 28, 2021. Your site is v7.0 using the Brine template family. Please point me to a specific image that is vertical so I don't have to search through all of them to figure out which are tall and which are wide.
  2. I'm not sure I understand where you want to apply the effect. The code currently targets the product grid pages of a Store page. If you link me directly to a page where you want to apply the effect I may be able to help.
  3. Add the following to Store Settings > Advanced > Page Header Code Injection for the store page. Please see per-page code injection. <style> /* product price and sale price reverse tagged */ .products.collection-content-wrapper .grid-item.tag-price-sale-reverse .grid-prices .product-price, .ProductItem.tag-price-sale-reverse .ProductItem-details .product-price { display : -webkit-box; display : -ms-flexbox; display : flex; -webkit-box-orient : horizontal; -webkit-box-direction : reverse; -ms-flex-direction : row-reverse; flex-direction : row-reverse; gap : 1em; -webkit-box-pack : left; -ms-flex-pack : left; justify-content : left; } /* product price and sale price color change */ .products.collection-content-wrapper .grid-item.tag-price-sale-reverse .sqs-money-native, .ProductItem.tag-price-sale-reverse .ProductItem-details .product-price .sqs-money-native { color : unset; } .products.collection-content-wrapper .grid-item.on-sale.tag-price-sale-reverse .original-price .sqs-money-native, .products.collection-content-wrapper .tag-price-sale-reverse .original-price { color : #a8a6a1; } </style> This is for v7.1 and specific to the posters need. Then to each product you want to switch price and sale price, add a tag named price sale reverse Let us know how it goes.
  4. The trick with sticky elements is that for something to be sticky it's parent element needs to be tall enough for the element you want to be stuck to stick in. If you don't have this relationship, then there is no way for position : sticky to work. If this is the relationship then no sticky is possible. If this is the relationship then a sticky is possible. This is an oversimplification of a somewhat complex CSS issue for those new to CSS. When the relationship is right then the sticky element floats within the parent based on a number of CSS property value pairs. I don't have a solution. If you want to read up on how sticky works there are many sources available on the web.
  5. You won't be able to get there with CSS alone. CSS doesn't have the ability to target specific words in a string of words, unless the words are wrapped in HTML tags. Also CSS can not concatenate text. If you used the tag line feature of your site, it may be possible to come up with some JavaScript that would wrap the words in HTML span tags and then those could then be targeted with CSS.
  6. Don't use the code and see the following. Let us know how it goes.
  7. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  8. Have you requested that Google remove those pages from their search results? They have a facility to do this. It is not surprising that G may not have updated their results in their cache for months. The inverse of asking for a removal would be to ask G to crawl your site again. That is also something G will let you do. If you haven't set up a Google Search Console account that wouldn't hurt.
  9. I suggest AWS (Amazon Web Services) S3 (Simple Storage Service) and then AWS CloudFront as a first stop. AWS is not the easiest to use at times mostly because AWS is so massive and finding the right documentation can be hard to find and dense.
  10. So it appears while stock listings TradingView provides directly on their site are blocked from iframe use, TD does provide widgets to gain access to stock charts.
  11. Another option if you are on the page itself in Preview you can click on the upper right arrow to go into Full Preview and get the URL from the address bar.
  12. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  13. Add the following to Design > Custom CSS. #home-header::after { bottom : 0; color : #b48a46; content : 'Capturing your life as it happens.'; font-size : 32px; font-style : italic; margin-bottom : 1em; margin-right : 1em; position : absolute; right : 0; text-align : right; } This is for v7.0 using the Brine template family. Let us know how it goes.
  14. Move your shop into the Not Linked area of Pages. Then in your Main Navigation create a Link page that points to the shop category you want to drop into. Something like /shop/earrings. Use the Sidebar Categories Type. Let us know how it goes.
  15. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  16. Please see the following. Here is some updated CSS. #block-62d5567fe2436e5b6229f4a4 { background-color: rgba( 1, 50, 32, 0.5 ); padding : 10px; text-align: center; } Let us know how it goes.
  17. The URL you have provided appears to have the capitalized DOCTYPE.
  18. There are are some errors generated by the custom calendar code that is installed. The code may not be installed properly or was not designed to work with SS. I would say this is an issue with that particular code and not a fault in SS. I don't have a solution as it looks like it would take some amount of time to try to figure out what the issue is.
  19. In Settings > Advanced > Code Injection > FOOTER you should find a line... setInterval(click, 12000); ...change 12000 to 6000. 6000 ms is 6 seconds. Let us know how it goes.
  20. Are you using a free service? Then I'd say no. If you are using a paid service then you should not have to put up with ads.
  21. It is possible to use a filter on links but I don't think it will achieve a good effect. I suggest changing the actual color of the links with the color property. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  22. Please see the last bullet point of Before you begin in Forwarding a Squarespace domain. It appears SS doesn't support what you want to do. However. You could transfer your domain to a provider like GoDaddy and I think you'll find they have the feature you are looking for. Please do some research before you transfer to make sure the provider you choose can do what you want.
  23. I suggest you create a page in the Not Linked area of pages. Give us the URL for that page. Add a test form there with your hidden fields and one or two visible fields. I'm thinking we will also need a test member account. Otherwise how can the MS code insert fields into a page unless a member is logged into MS?
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.