1. Home
  2. Docs
  3. RATNA
  4. Theme Features
  5. Tweak

Tweak

Blog – disable list/grid mode and grid only.

paste below CSS at theme.scss last line.

 @media (min-width:801px) {
     .blog-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr); 
         gap: 20px; 
    }
     .blog-grid .blog .blog-post-figure {
         float: none;
         width: 100%;
         clear: none;
    }
     .blog-grid .blog .blog-post-body {
         float: none;
         width: 100%;
    }
     main .blog-grid .blog {
         max-width: 100%!important;
         max-width: 100%!important;
    }
     .blog-layout {
         display: none;
    }
}