Hey @jackass909,
sorry for the lack of knowledge….I really like ur plugin tho
Don’t worry about it, and thanks! Glad to know you like the plugin!
Alright, please try this:
- Create a wordpress-popular-posts folder inside your WordPress theme (eg. /wp-content/themes/twentytwentyone/wordpress-popular-posts/). Open the newly created wordpress-popular-posts folder and create another one inside called themes (eg. /wp-content/themes/twentytwentyone/wordpress-popular-posts/themes/).
- Next, go to /wp-content/plugins/wordpress-popular-posts/assets/themes/ and copy the cardview-compact folder.
- Go back to /wp-content/themes/[YOUR-THEME]/wordpress-popular-posts/themes/ and paste the cardview-compact folder that you previously copied here (eg. /wp-content/themes/twentytwentyone/wordpress-popular-posts/themes/cardview-compact/).
Finally, open the Cardview Compact’s stylesheet (/wp-content/themes/[YOUR-THEME]/wordpress-popular-posts/themes/cardview-compact/style.css) and add the following CSS rules to it:
@media (max-width: 480px) {
.wpp-cardview-compact {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
}
-
This reply was modified 1 year, 1 month ago by Hector Cabrera. Reason: Improved general formatting