@davide96 You can add code to the Sidebar Widgets on line 2017 in your style.css
Look for this code –
.sidebar .widget {
background-color: #fff;
margin-bottom: 30px;
}
Then adjust it to look like this –
.sidebar .widget {
background-color: #fff;
margin-bottom: 50px;
border-bottom: 1px dashed #333;
padding-bottom: 50px;
}
That adds the dashed border and extra spacing on top and bottom of the border.
To adjust the Width of the Sidebar, look for the following code on line 721 –
.sidebar-primary {
float: right;
width: 360px;
}
Let me know if that helps.