Hello!
Help stretch the button across the width of the sidebar.
The telegram button turned out to be very small, I need to smooth it over the width of the side panel.
You can see for yourself https://hyipgang.org/
Theme Generatepress. help me please
screenshot – https://hyipgang.org/41-2/
The width of the button you have highlighted is already the full width of the container it’s in. If you need it to go to the edges of the widget you will need to adjust the padding defined by the following style in your CSS:
.widget-area .widget {
padding: 40px 40px 40px 40px;
}
~ Steven
]]>For example, this will remove the padding from the left and right of widgets so elements touch the side of the box:
.widget-area .widget {
padding: 40px 0;
}
If you remove the padding you’ll need to re-add it to the areas that still need it.
~ Steven
]]>