How to Make WPCodeBox Full-Width with ...
Learn how to make WPCodeBox full-width using SCSS with this helpful snippet. This gui...

WPCodeBox
509
This code snippet allows you to easily hide or remove the “Promoted” and “Featured” listing badges in MyListing, providing a cleaner display and more control over your website’s appearance.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
.level-promoted .ad-badge {
display: none;
}
.level-featured .ad-badge {
display: none;
}





