Site logo

Archived topic

Border around content and widgets

1 reply · Started by Rajesh on June 10, 2019

Viewing posts 1–2 of 2

Hai, I want to add border around content and widget and I find this code
.inside-article,.sidebar .widget{border:1px solid #f2f3f4}
But it is looking good in desktop version but in mobile version the left and right borders are not appearing, so how can I show proper borders in mobile version.

Hi there,

looks like you cache plugin is messing with the order of the CSS slightly so the padding on the columns is missing on mobile. Add this CSS to stop that from happening:

@media (max-width: 768px) {
    .generate-columns {
        padding-right: 20px !important;
    }
}
This archived topic is closed to new replies.