CSS - For Developers | Business Directory https://businessdirectoryplugin.com Create any kind of directory on your site, easily Mon, 31 Mar 2025 15:44:20 +0000 en-US hourly 1 https://businessdirectoryplugin.com/wp-content/uploads/2020/10/cropped-Favicon3-32x32.png CSS - For Developers | Business Directory https://businessdirectoryplugin.com 32 32 Submit listing page https://businessdirectoryplugin.com/knowledge-base/submit-listing-page-css/?utm_source=rss&utm_medium=rss&utm_campaign=submit-listing-page-css Thu, 27 Mar 2025 04:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/submit-listing-page-2/ CSS relating to the submit listing page.

The post Submit listing page first appeared on Business Directory.]]>
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.

CSS relating to the submit listing page.

Examples

Hide rootline

This will hide the progress bar at the top of the submit listing page.

.wpbdp-submit-page .wpbdp-submit-rootline {
  display: none !important;
}

Hide rootline text

This will hide the text under the rootline.

.wpbdp-submit-page .wpbdp-rootline-section-name {
  display: none !important;
}

Hide plan description

This CSS will hide the plan description on the plan selection page.

.wpbdp-submit-page .wpbdp-plan-description {
  display: none !important;
}
The post Submit listing page first appeared on Business Directory.]]>
Main directory page https://businessdirectoryplugin.com/knowledge-base/main-directory-page/?utm_source=rss&utm_medium=rss&utm_campaign=main-directory-page Thu, 27 Mar 2025 04:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/main-directory-page/ This will cover CSS for different sections of the main directory page.

The post Main directory page first appeared on Business Directory.]]>
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 will cover CSS for different sections of the main directory page.

Examples

Hide advanced search button

This will hide the advanced search button.

.wpbdp-page .wpbdp-advanced-search-link {
  display: none !important;
}

Remove underline from pagination

This will remove the underline text decoration from the pagination buttons.

.wpbdp-pagination a {
  text-decoration: none !important;
}
The post Main directory page first appeared on Business Directory.]]>
Excerpt view https://businessdirectoryplugin.com/knowledge-base/excerpt-view/?utm_source=rss&utm_medium=rss&utm_campaign=excerpt-view Tue, 18 Mar 2025 04:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/excerpt-view/ This CSS covers the excerpt view of the plugin.

The post Excerpt view first appeared on Business Directory.]]>
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 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;
}
The post Excerpt view first appeared on Business Directory.]]>
Listing view https://businessdirectoryplugin.com/knowledge-base/listing-view/?utm_source=rss&utm_medium=rss&utm_campaign=listing-view Tue, 18 Mar 2025 04:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/listing-view/ This CSS covers the listing view of the plugin.

The post Listing view first appeared on Business Directory.]]>
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 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;
}
The post Listing view first appeared on Business Directory.]]>
Categories list https://businessdirectoryplugin.com/knowledge-base/directory-categories/?utm_source=rss&utm_medium=rss&utm_campaign=directory-categories Tue, 11 Feb 2025 05:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/directory-categories/ CSS relating to the categories list on the main directory page.

The post Categories list first appeared on Business Directory.]]>
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.

CSS relating to the categories list on the main directory page.

Examples

Hide the categories list on your directory page.

#wpbdp-categories {
  display: none !important;
}
The post Categories list first appeared on Business Directory.]]>