Splide slider: i am passing custom classes through options but it is removing default functionally of arrow

Advertisements This are the options i passed, i added slider-prev for previous same slider-next for next but not working options={{ type: ‘slide’, arrows: false, pagination: false, classes: { prev: ‘slider-prev’, next: ‘slider-next’, }, }} I tried this as well add slider-arrow common class here as well options={{ type: ‘slide’, arrows: false, pagination: false, classes: {… Read More Splide slider: i am passing custom classes through options but it is removing default functionally of arrow

Looking to place text over image in React

Advertisements I have a Splideslide element in react and am looking to move the description text over the image for each element. Currently the code I have is: import {useEffect, useState} from “react”; import styled from “styled-components”; import {Splide, SplideSlide} from “@splidejs/react-splide”; import “@splidejs/splide/dist/css/splide.min.css”; function Popular() { const [popular, setPopular] = useState([]); useEffect(() => {… Read More Looking to place text over image in React