Hello, How can I remove or reposition the arrows on the card carousel on mobile view? (Using Squarespace) The arrows are too far from the image and look good, many Thanks
Hi Sam I've used the following code to change the logo link on my website: document.querySelector('.header-title-logo a').setAttribute('href', '/home'); and it has worked on the desktop version of my website. However, it hasn't worked on the mobile version. Is there any way I could fix this problem?
Hello,
How can I remove or reposition the arrows on the card carousel on mobile view? (Using Squarespace)
The arrows are too far from the image and look good, many Thanks
Hey! You can use the below in your CSS:
.mobile-arrows {
display: none !important;
}
Hi Sam I've used the following code to change the logo link on my website:
document.querySelector('.header-title-logo a').setAttribute('href', '/home');
and it has worked on the desktop version of my website. However, it
hasn't worked on the mobile version. Is there any way I could fix this
problem?
Hey David,
Try this:
document.querySelector('.header-title-logo a', ' .header-mobile-logo a').setAttribute('href', '/home');
If that doesn't work try this:
document.querySelector('.header-title-logo a').setAttribute('href', '/home');
document.querySelector(' .header-mobile-logo a').setAttribute('href', '/home');
Unfortunately these haven't worked@@bycrawford