-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dddf63
commit 17e6727
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* Add 4 columns on course catalog page on Sky Pilot. | ||
* | ||
* Learn more at: https://lifterlms.com/docs/how-to-add-4-columns-on-course-catalog-page-on-sky-pilot/ | ||
* | ||
* You can add this recipe to your site by creating a custom plugin | ||
* or using the Code Snippets plugin available for free in the WordPress repository. | ||
* Read this companion documentation for step-by-step directions on either method. | ||
* https://lifterlms.com/docs/adding-custom-code/ | ||
*/ | ||
.llms-loop .llms-loop-list { | ||
display: grid !important; | ||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | ||
} | ||
|
||
.llms-loop-item { | ||
width: 100% !important; | ||
} |