top of page

Forum Posts

Leanna Teoh
May 26, 2023
In Site & Page Design
Hi, I was wondering if any of you know of a way to add a strip WITHIN a full-width slide? Either that or is it possible for the full-width slideshow to have margins on the sides? Similar to how you're able to add margins for stretched strips.
0
2
14
Leanna Teoh
May 19, 2023
In Coding with Velo
Hi, I've read many other similar posts on this but it doesn't seem to work for me. Here's what I'm trying to do... I am trying to make a text box to replace the original text on page load when I click a button. Clicking another button on the page will replace that text to show another text box. e.g. When I click #rescueButton, #rescueText will appear, #animalServicesText will be hidden. The button will then change it's fill colour. (I created a duplicate button, #rescueButtonSelected for this) My current code is: export function rescueButton_click(event) { let isHidden = $w("#rescueText").hidden; // false if ($w("#rescueText").hidden) { $w("#rescueText").show(); $w("#rescueButtonSelected").show(); $w("#animalServicesText").hide(); } else { $w("#rescueText").hide(); $w("#rescueButtonSelected").hide(); $w("#animalServicesText").show(); } } Right now, nothing happens when I run this code. Am I missing anything? Thank you in advance for any help!
0
4
151

Leanna Teoh

More actions
bottom of page