Heads up!
This article contains CSS code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains CSS code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This CSS covers the listing view of the plugin.
Examples
Change listing view title size
This is how you can increase or decrease the listing title size in the listing view.
.wpbdp_listing .entry-title { font-size: 34px !important; }
Change listing view details font size
This is how you can increase or decrease the font size of the listing details in the listing view.
.wpbdp_listing .listing-details { font-size: 20px !important; }
Hide listing action buttons
This will hide the listing action buttons, such as the Edit, Delete, etc... in the listing view.
.wpbdp_listing .listing-actions { display: none !important; }
Hide listing author
This will hide the listing meta information, such as the author and date published.
.wpbdp_listing .entry-meta { display: none !important; }