Hello,
You can add custom css in order to modify your display, follow me step by step :
- Have a look on
this tutorial
.
=> Create a custom version of your "Styles for the front-end"
- Use "margin" css commande, like this :
.Your_Required_Element_Class {
margin: 0px 5px 0 5px; // command: margin-top right bottom left;
}
- For define elements size :
.Your_Required_Element_Class {
width: 20px; // OR 25px OR 30px
height: 20px; // OR 25px etc...
}
- To get your
required class, point it then
right-click => Inspect (or inspector tool)
=> A new window will open and show you the Html, and your will be able to see the required class
Hope this will help you to achieved your needs.
Regards