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 excerpt view of the plugin.
Examples
Change listing excerpt title size
This is how you can increase or decrease the listing title size in the excerpt view.
.wpbdp-listing-excerpt .listing-title a { font-size: 34px !important; }
Disable clicking listing titles
This CSS will prevent users from clicking the listing title.
.wpbdp-listing-excerpt .listing-title { pointer-events: none !important; cursor: default !important; }
Hide listing action buttons
This will hide the listing action buttons, such as the Edit, Delete, etc... in the excerpt view.
.wpbdp-listing-excerpt .listing-actions { display: none !important; }
Change listing excerpt details font size
This is how you can increase or decrease the font size of the listing details in the excerpt view.
.wpbdp-listing-excerpt .listing-details { font-size: 20px !important; }