Reply To: Widget customizing

Home Forums Support Widget customizing Reply To: Widget customizing

Home Forums Support Widget customizing Reply To: Widget customizing

#152332
Tom
Lead Developer
Lead Developer

First you’ll need to remove the padding and color from your widgets:

.sidebar .widget {
    padding: 0;
    background-color: transparent;
}

Then re-set it to the contents of the widget:

.sidebar .widget > * {
    padding: 40px;
    background-color: #FFFFFF;
}

Then style the title:

.sidebar .widget h4.widget-title {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    background: #222222;
    color: #FFFFFF;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

Adding CSS: https://generatepress.com/knowledgebase/adding-css/