skip to Main Content
< All Articles
Print

rem_css_kit_styles

This action is responsible for rendering the styles or CSS globally for all the real estate manager templates and is located in assets/front/css/styles.php

Arguments

  1. Primary Color [string]

Example

Suppose you want to change the price badge color on the single property page, use the following in the functions.php file of the theme/child theme.

add_action( 'rem_css_kit_styles', 'rem_custom_badge_color', 10, 1 );

function rem_custom_badge_color($primary_color){
    echo "#property-content .large-price {background-color: black !important;}"
}

 

Quick Navigation
Back To Top