Hi @zirekx,
I wonder how can i ADD my svg or png arrow to next button on pagination page
I’m afraid there isn’t any out of the box setting regarding this at the moment, the plugin only supports changing the button text.
You can try the following CSS and which should help with adding CSS arrows:
.forminator-pagination-footer > .forminator-button-next::after {
content: "\2192";
margin-left: 14%;
font-size: 16px;
}
.forminator-pagination-footer > .forminator-button-back::before {
content: "\2190";
margin-right: 14%;
font-size: 16px;
}
You can add the CSS via the default WordPress customizer, under Appearance > Customize > Additional CSS.
If you are looking to add custom svg or png, then please do share a page URL where you have the form, so that we could check if there is any CSS that could be suggested.
Kind Regards,
Nithin