I have this pseudo class:
.swiper-pagination-v::after{
content: "b6";
margin: 10px;
background-repeat: no-repeat;
}
And I need to select it because it's the arrow that makes the slider work, for this is this kind of javascript:
swiperV = new Swiper('.swiper-container-h', {
pagination: '.swiper-pagination-h',
paginationClickable: true,
direction: 'vertical',
spaceBetween: 50,
nextButton: '.swiper-button-next-v',
prevButton: '.swiper-button-prev-v',
where nextButton
is the pseudo-class, and the thing is that I do not find anything at all.
I've tried with many selectors, attributes and nothing, to see if you can help me please. Thank you very much!