Hello,
Follow me step by step in order to teach you how to edit your display :
- First, have a look on this tutorial to see how to edit your Css file,
here
.
- Then create a custom style file, by clicking on the "+" button, and add your css commands.
- To elaborate your Css command, first you have to get the required Html class (or Id)
1. Point your element on the front end, and right-click => Inspect (or inspector tool)
2. A new window will open and show you the html, example :
- Example of your Css command, you can use :
.required_class {
// Button dimensions :
width: 55px // OR 70px or 90px etc...
height: 35px // OR 40px etc...
}
.required_class {
// Create space between your button :
margin: 5px 10px 5px 10px; // 5px for top, 10 px right, 5px for bottom, 10px for left
}
Hope this will help you to achieve your needs.
Regards