Skip to main content

How to change the carousel navigation arrow colors

Learn how to change the colors of the navigation arrows in your Moast carousel using custom CSS.

Updated over 2 weeks ago

You can customize the colors of the next and previous arrows in your Moast carousel using custom CSS in the app block settings.

Steps:

  1. Go to your Shopify theme editor and open the Moast app block settings.

  2. Find the Custom CSS box.

  3. Copy and paste this code:

    .carousel__next,
    .carousel__prev {
    background-color: #f8f3ec;
    }

    .carousel__next svg,
    .carousel__prev svg {
    fill: #241023;
    }

    /* Hover color */
    .carousel__next:hover,
    .carousel__prev:hover {
    background-color: #f8f3ec;
    }

    .carousel__next:hover svg,
    .carousel__prev:hover svg {
    fill: #241023;
    }

  4. Change the hex codes to your desired colors.

    • Default color: Change the first section.

    • Hover color: Change the hover section.

    • If you want the hover color to stay the same, just use the same color in both sections.

  5. Save your changes. Now your carousel arrows will match your store’s colors exactly how you want them.

Did this answer your question?