Hi,
I’m using Dawn 2.0
For my “multicolumn” sections, I want to change the slider-buttons.
Now it’s in numbers like this:
I want it to look like this:

How can I change it?
Thanks
Hi,
I’m using Dawn 2.0
For my “multicolumn” sections, I want to change the slider-buttons.
Now it’s in numbers like this:
I want it to look like this:

How can I change it?
Thanks
I can’t see the slider section on the homepage.
And you need some javascript coding skills.
Hi @SimonD ,
I have JavaScript skills, I tried to change it, but it’s not working.
There are two sections - multicolumn on my homepage.
Simple use Slick https://kenwheeler.github.io/slick/
.hero__dots-wrapper {
display: flex;
justify-content: center;
position: absolute;
width: 100%;
.slick-dots {
top: 10px;
height: 1.5rem;
width: auto;
padding: 0 6px;
position: relative;
border-radius: 100px;
}
}
Add this Code into theme.scss.liquid
Then go to Theme.js.liquid and these line
First declare variable.
{
var settings,
$slider,
$allSlides,
$activeSlide,
$slickDots,
$paginations,
$mobileDotsContainer,
windowHeight,
scrolled,
prefixedTransform;
var currentActiveSlide = 0;
}
After Calling Object
onInit = function(obj) {
$slider = obj.$slider;
$allSlides = $slider.find(‘.’ + slickTheme.vars.slideClass);
$activeSlide = $slider.find(‘.’ + slickTheme.vars.activeClass);
$slickDots = $(slickTheme.vars.slickDots);
$paginations = slickTheme.cache.$heroDotsWrapper.find(
slickTheme.vars.pagination
);
That’s it
Hi @Awaiskhalid .
I’m using Dawn 2.0, you posted code for old template version
It’s same as it Dawn 2.0 only update it’s class name or Onclick id, if you have some knowledge about programming you can do this