Home › Forums › Support › Custom Sidebar Boxes and Buttons › Reply To: Custom Sidebar Boxes and Buttons
April 27, 2016 at 11:33 pm
#189951
Tom
Lead Developer
Lead Developer
Hi there,
It’s custom CSS – this should help: https://generatepress.com/forums/topic/style-sidebar-widgets-individually/#post-44788
The above should help with the padding as well.
All of the buttons are custom CSS as well. You can find a bunch of CSS for buttons here: https://generatepress.com/forums/topic/custom-colors-for-buttons/#post-143266
To round them, you can do this:
.button {
border-radius: 5px;
}
For the transparent button, you can do this:
.button.transparent-button {
background-color: transparent;
color: #222;
border: 2px solid #222;
}
.button.transparent-button:hover {
background-color: #222;
color: #FFF;
}
<a href="#" class="button transparent-button">Nice button</a>
Hope this helps 🙂