Hi Ishrat,
You can use some additional CSS to do this. Here’s some code you can try:
/** Margin between the slider buttons **/
.slide-inner .roll-button.button-slider {
margin: 0 10px;
}
To add your CSS, go to Appearance > Customize > Additional CSS.
Hope this helps.
Hi Collins thank you so much it worked perfectly. Could you please also tell me the code to reduce the padding of buttons.
Regards
Ishrat
Hi Ishrat,
Yes. Here’s some CSS code for that:
/** Padding for the buttons **/
.slide-inner .roll-button.button-slider{
padding: 5px 5px 5px 5px;
}
Side note: the values are in this order, padding-top, paddding-right, padding-bottom and padding-left.
Hope this helps.