Round Corners of List Section Cards | Squarespace Guide

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 5

  • @filippopaccagnella9912
    @filippopaccagnella9912 Месяц назад

    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

    • @bycrawford
      @bycrawford  Месяц назад +1

      Hey! You can use the below in your CSS:
      .mobile-arrows {
      display: none !important;
      }

  • @DavidLowe-l2d
    @DavidLowe-l2d 10 месяцев назад

    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?

    • @bycrawford
      @bycrawford  10 месяцев назад

      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');

    • @DavidLowe-l2d
      @DavidLowe-l2d 10 месяцев назад

      Unfortunately these haven't worked@@bycrawford