Jump to content

Kevin_40-red_fx

Member
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Kevin_40-red_fx

  1. Yes, that's exactly it. To touch both sides in fact. Can you help?
  2. Well, it would be great if it could be applied to the whole website BUT my priority are the footer and the services pages in both languages. In English pages: https://www.redfx.co/en/payment-solutions https://www.redfx.co/en/business-cash-flow-strategy https://www.redfx.co/en/multi-currency-accounts https://www.redfx.co/en/private-foreign-exchange https://www.redfx.co/en/insurance https://www.redfx.co/en/financial-planning-and-wealth-management https://www.redfx.co/en/expense-reporting In French pages: https://www.redfx.co/fr/solutions-de-paiements https://www.redfx.co/fr/stratgie-de-trsorerie https://www.redfx.co/fr/comptes-multidevises https://www.redfx.co/fr/operations-de-changes-privees https://www.redfx.co/fr/assurance https://www.redfx.co/fr/plannification-financiere-et-gestion-de-patrimoine https://www.redfx.co/fr/gestion-des-frais
  3. Hi, the webiste is: https://www.redfx.co/ It would be great if you could help. Thank you!
  4. Hi guys, I request your help once again... I'm trying to render my website, full bleed.. but after months of researches I don't seem able to solve this problem. Your help would be much appreciated. The website has been built on a York Template family, the Harris and I can't make it look just as how I imagined it. This image shows how it looks now: As you can see, there's a lot of white spaces on the sides and the zone for the text, images, etc, is quite small and it squeezes everything together, leaving too much white spaces and I wish to optimize that. My goal is to make it more like this "https://wise.com/fr/" page... If you see this site, it uses all the available white spaces and makes it for a more attractive and useful display. Can anyone help me out? I would prefer a solution that requires little to no coding at all but at this point, I'll take any working solution. Thank you for your attention.
  5. Hi guys, I've been struggling with my blog page for a while now. Turns out I created the entire website on one of the least flexible template on Squarespace and it is really frustrating... Anyways, I'm trying to add a sidebar on my blog post page but can't seem to do it, at least, not automatically... Can anyone please help me out? Is there a way to force it onto the website? Many thanks
  6. Hello everybody, can someone help? I've been trying to add this code below into my website but the results aren't quite as I intended. This is a modified codepen I've found for a grid-services with hoover effect. Original codepen is: https://codepen.io/daya-s/pen/MOdzGY After modifications it should be looking like this: But when I transfer the code into my website using <style> and <script> to rely the 3 codes, it turns out completely different: This is the full code I've used: <div class="container"> <h2 class="text-center text-bold">Our Services</h2> <div class="starter-template"> <div class="row"> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/assets/images/icons/clearing-settlement.png" width="100"> <div class="hover-div_inner"> <h3><a href="#">Payment Solutions</a></h3> <p class="text-center">Payroll solutions, bulk & batched payments or 3rd party incoming payments – WE PROVIDE SOLUTIONS!</p> </div> </section> </div> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/assets/images/icons/icon-connectivity-management.png" width="100"> <div class="hover-div_inner"> <h3><a href="#">Business Cash-Flow Strategy</a></h3> <p class="text-center">Our tailor-made strategies will HELP YOU SAVE & PROTECT YOUR MONEY!</p> </div> </section> </div> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/assets/images/icons/icon-issuing.png" width="80"> <div class="hover-div_inner"> <h3><a href="#">Multicurrency Accounts</a></h3> <p class="text-center">Receive, Pay & Stock up money in domestic currencies!</p> </div> </div> <div class="starter-template"> <div class="row"> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/assets/images/icons/citizen.png" width="100"> <div class="hover-div_inner"> <h3><a href="#">Private Foreign Exchange</a></h3> <p class="text-center">Benefit from bank-beating exchange rates and our expertise every step of the way!</p> </div> </section> </div> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/icons/wallet.png" width="100"> <div class="hover-div_inner"> <h3><a href="#">Financial Planning & Wealth Management</a></h3> <p class="text-center">With our partners we provide you with regulated advice and full understanding of your financial needs</p> </div> </section> </div> <div class="col-sm-4"> <section class="hover-div"> <img src="https://worldline.com/content/dam/worldline-new/assets/images/icons/expenditure.png" width="80"> <div class="hover-div_inner"> <h3><a href="#">Expense Reporting & Insurance</a></h3> <p class="text-center">GO sustainable and environmentally friendly with pre-paid cards, monitor foreign expenses, manage receipts and streamline your accounting. </p> </div> </div> </div> <style> body { font-family: 'Lato', sans-serif; padding-top: 0px; } .starter-template { padding: 20px 15px; text-align: center; } span.lower-text { color: #ffc300; font-size: 25px; display: block; } .hover-div { padding: 20px 20px; text-align: center; min-height: 350px; } .hover-div { border-top: 1px solid #f8f8f8; background: #f8f8f8; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); -webkit-transition: all 0.3s; transition: all 0.3s; margin: 10px 0px; } .hover-div:hover { -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); box-shadow: 0 22px 43px rgba(0, 0, 0, 0.32); cursor: pointer; border-radius: 5px; } </style> <script> $(document).ready(function () { $('.hover-div').hover(function () { $('.hover-div').stop().fadeTo('fast', 0.3); $(this).stop().fadeTo('fast', 1); }, function () { $('.hover-div').stop().fadeTo('fast', 1); }); }); </script> Can anyone help me? Thank you!
  7. Hi everyone, I've been trying to add a counter to one specific page but it isn't working. This is the codepen style, I'm interested on: https://codepen.io/syedrafeeq/pen/OJyLXw If possible, I'd prefer to have the HTML + CSS + Java in just one code to imbed it directly into the page location, instead of having them in separate locations. After custom it, this is what I managed to modify the code into (see image). Thank you, in advance!
  8. It worked! Thank you so much!! Can you give me a code to better custom the "Sign Up/Login" button as well as another one to replace the "EN and FR" with the flags of UK and France? It would be great!
  9. Hi, I've added the code back! This time it doesn't show any syntax error. The language switcher appeared up in the right, which is good, but in the navigation there still is all the pages shown, regardless of the language selected Can you take a look?
  10. Hello, No, it's not working. I've added a cover page and added buttons linked to both English and French homepages, but once you select the language, it show both english and french pages at the same time. It was supposed to show the pages of the same language in the navigation and hide the other pages. I'm not sure if I expressed myself correctly, I apologize if its not the case!
  11. Site URL: https://www.redfx.co/ Hello to all of you!! I've been trying to create a professional multi-language (English and French, to be more precise) website for the past 3 weeks and I've always seem to encounter a problem. I've read all the posts that I could find in the forum, related to this issue but none seem to fully work for my website. The only code that did managed to work was the one from this page: https://www.bradgood.net/articles/multi-language-content-on-any-squarespace-template BUT it only worked for a couple of days until it abruptly stopped with no explanation. I tried deleting the entire code and reapply it but now I get "syntax error" each time… I've deleted it. I've tried these methods too and none work: https://kerstinmartin.com/blog/css-solution-for-bilingual-squarespace-website https://www.creationsbyfaria.com/blog/multilingual-site-squarespace https://beaverhero.com/squarespace-2-languages/ Can someone please help me out? Thank you for the attention!
×
×
  • 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.