WP Residence Help WP Residence Help

  • WpEstate
  • How to Build Your Website
  • Video Tutorials
  • Client Support
  • API
Home / WpResidence 5.0 / WP Estate Theme Options Styles Documentation – Part 1

WP Estate Theme Options Styles Documentation – Part 1

439 views 0

General Settings Section

1. Main Color

  • Theme Options Title: “Main Color”
  • Option Name: wp_estate_main_color
  • CSS Variable: –wp-estate-main-color-option
  • Purpose: Primary theme color used for main accents, buttons, and important UI elements
  • Default Value: #004274

SCSS Usage:

.element {
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
}

2. Secondary Color

  • Theme Options Title: “Second Color”
  • Option Name: wp_estate_second_color
  • CSS Variable: –wp-estate-second-color-option
  • Purpose: Secondary theme color for hovers and complementary elements
  • Default Value: #b881fc

SCSS Usage:

.element {
    color: var(--wp-estate-second-color-option, var(--wp-estate-second-color));
}

3. Main Grid Content Width

  • Theme Options Title: “Main Grid Width in px”
  • Option Name: wp_estate_main_grid_content_width
  • CSS Variable: –wp-estate-main-grid-content-width-option
  • Unit: px
  • Purpose: Defines the main content width. Default value is 1200px
  • Default Value: 1200

SCSS Usage:

.container {
    width: var(--wp-estate-main-grid-content-width-option, var(--wp-estate-main-grid-content-width));
}

4. Content Width

  • Theme Options Title: “Content Width (In Percent)”
  • Option Name: wp_estate_main_content_width
  • CSS Variable: –wp-estate-main-content-width-option
  • Unit: %
  • Purpose: Width of the content in percent. Sidebar will occupy the rest
  • Default Value: 70

SCSS Usage:

.content {
    width: var(--wp-estate-main-content-width-option, var(--wp-estate-main-content-width));
}

5. Content Area Internal Padding Top

  • Theme Options Title: “Content Area Internal Padding Top”
  • Option Name: wp_estate_contentarea_internal_padding_top
  • CSS Variable: –wp-estate-contentarea-internal-padding-top-option
  • Unit: px
  • Purpose: Controls top padding of content area
  • Default Value: 30

SCSS Usage:

.content-area {
    padding-top: var(--wp-estate-contentarea-internal-padding-top-option, var(--wp-estate-contentarea-internal-padding-top));
}

6. Content Area Internal Padding Left

  • Theme Options Title: “Content Area Internal Padding Left”
  • Option Name: wp_estate_contentarea_internal_padding_left
  • CSS Variable: –wp-estate-contentarea-internal-padding-left-option
  • Unit: px
  • Purpose: Controls left padding of content area
  • Default Value: 30

SCSS Usage:

.content-area {
    padding-left: var(--wp-estate-contentarea-internal-padding-left-option, var(--wp-estate-contentarea-internal-padding-left));
}

7. Content Area Internal Padding Bottom

  • Theme Options Title: “Content Area Internal Padding Bottom”
  • Option Name: wp_estate_contentarea_internal_padding_bottom
  • CSS Variable: –wp-estate-contentarea-internal-padding-bottom-option
  • Unit: px
  • Purpose: Controls bottom padding of content area
  • Default Value: 30

SCSS Usage:

.content-area {
    padding-bottom: var(--wp-estate-contentarea-internal-padding-bottom-option, var(--wp-estate-contentarea-internal-padding-bottom));
}

8. Content Area Internal Padding Right

  • Theme Options Title: “Content Area Internal Padding Right”
  • Option Name: wp_estate_contentarea_internal_padding_right
  • CSS Variable: –wp-estate-contentarea-internal-padding-right-option
  • Unit: px
  • Purpose: Controls right padding of content area
  • Default Value: 30

SCSS Usage:

.content-area {
    padding-right: var(--wp-estate-contentarea-internal-padding-right-option, var(--wp-estate-contentarea-internal-padding-right));
}

9. Content Area Background Color

  • Theme Options Title: “Content Area Background Color”
  • Option Name: wp_estate_content_area_back_color
  • CSS Variable: –wp-estate-content-area-back-color-option
  • Purpose: Background color for the main content area
  • Default Value: #ffffff

SCSS Usage:

.content-area {
    background-color: var(--wp-estate-content-area-back-color-option, var(--wp-estate-content-area-back-color));
}

10. Border Corner Radius

  • Theme Options Title: “Border Corner Radius”
  • Option Name: wp_estate_border_radius_corner
  • CSS Variable: –wp-estate-border-radius-corner-option
  • Unit: px
  • Purpose: Border radius for elements like property unit, agent unit or blog unit
  • Default Value: 4

SCSS Usage:

.rounded-element {
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp-estate-border-radius-corner));
}

11. Box Shadow

  • Theme Options Title: “Box Shadow on elements like property unit”
  • Option Name: wp_estate_cssbox_shadow
  • CSS Variable: –wp-estate-cssbox-shadow-option
  • Purpose: Box shadow effect on property units and similar elements
  • Default Value: 0px 2px 0px 0px rgba(227, 228, 231, 1)

SCSS Usage:

.property-unit {
    box-shadow: var(--wp-estate-cssbox-shadow-option, var(--wp-estate-cssbox-shadow));
}

12. Logo Maximum Height

  • Theme Options Title: “Maximum height for the logo in px”
  • Option Name: wp_estate_logo_max_height
  • CSS Variable: –wp-estate-logo-max-height-option
  • Unit: px
  • Purpose: Controls maximum height of the logo
  • Default Value: 60

SCSS Usage:

.logo img {
    max-height: var(--wp-estate-logo-max-height-option, var(--wp-estate-logo-max-height));
}

13. Logo Maximum Width

  • Theme Options Title: “Maximum width for the logo in px”
  • Option Name: wp_estate_logo_max_width
  • CSS Variable: –wp-estate-logo-max-width-option
  • Unit: px
  • Purpose: Controls maximum width of the logo
  • Default Value: 200

SCSS Usage:

.logo img {
    max-width: var(--wp-estate-logo-max-width-option, var(--wp-estate-logo-max-width));
}

14. Logo Margin

  • Theme Options Title: “Margin top for logo in px”
  • Option Name: wp_estate_logo_margin
  • CSS Variable: –wp-estate-logo-margin-option
  • Unit: px
  • Purpose: Controls top margin for logo
  • Default Value: 0

SCSS Usage:

.logo img {
    margin-top: var(--wp-estate-logo-margin-option, var(--wp-estate-logo-margin));
}

15. Header Height

  • Theme Options Title: “Header Height”
  • Option Name: wp_estate_header_height
  • CSS Variable: –wp-estate-header-height-option
  • Unit: px
  • Purpose: Controls header height in pixels
  • Default Value: 90

SCSS Usage:

.header-wrapper {
    height: var(--wp-estate-header-height-option, var(--wp-estate-header-height));
}

16. Sticky Header Height

  • Theme Options Title: “Sticky Header Height”
  • Option Name: wp_estate_sticky_header_height
  • CSS Variable: –wp-estate-sticky-header-height-option
  • Unit: px
  • Purpose: Controls sticky header height in pixels
  • Default Value: 70

SCSS Usage:

.header-wrapper.sticky-header {
    height: var(--wp-estate-sticky-header-height-option, var(--wp-estate-sticky-header-height));
}

17. Top Menu Font Size

  • Theme Options Title: “Top Menu Font Size”
  • Option Name: wp_estate_top_menu_font_size
  • CSS Variable: –wp-estate-top-menu-font-size-option
  • Unit: px
  • Purpose: Controls font size of top menu items
  • Default Value: 14

SCSS Usage:

.top-menu-item {
    font-size: var(--wp-estate-top-menu-font-size-option, var(--wp-estate-top-menu-font-size));
}

18. Menu Item Font Size

  • Theme Options Title: “Menu Item Font Size”
  • Option Name: wp_estate_menu_item_font_size
  • CSS Variable: –wp-estate-menu-item-font-size-option
  • Unit: px
  • Purpose: Controls font size of main menu items
  • Default Value: 14

SCSS Usage:

.menu-item {
    font-size: var(--wp-estate-menu-item-font-size-option, var(--wp-estate-menu-item-font-size));
}

19. Border Bottom Header

  • Theme Options Title: “Height of the border below header (in pixels)”
  • Option Name: wp_estate_border_bottom_header
  • CSS Variable: –wp-estate-border-bottom-header-option
  • Unit: px
  • Purpose: Controls the height of border below header
  • Default Value: 0

SCSS Usage:

.header-wrapper {
    border-bottom-width: var(--wp-estate-border-bottom-header-option, var(--wp-estate-border-bottom-header));
}

20. Sticky Border Bottom Header

  • Theme Options Title: “Height of the border below sticky header (in pixels)”
  • Option Name: wp_estate_sticky_border_bottom_header
  • CSS Variable: –wp-estate-sticky-border-bottom-header-option
  • Unit: px
  • Purpose: Controls the height of border below sticky header
  • Default Value: 0

SCSS Usage:

.header-wrapper.sticky-header {
    border-bottom-width: var(--wp-estate-sticky-border-bottom-header-option, var(--wp-estate-sticky-border-bottom-header));
}

WpResidence 5.0

Related Articles

  • Introduction to WPResidence Header Customization
  • Understanding WPResidence Header Types: An Overview
  • Customizing the WPResidence Logo Display
  • Configuring the Primary Navigation Menu in WPResidence

WP Residence Documentation

  • 1. General
    • How to Get Support
    • Get your buyer license code.
    • Use SSL / https
    • Server / Theme Requirements
  • 2. Installation
  • 3. Installation FAQ
  • 4. Advanced Search
    • Advanced Search Display Settings
    • Advanced Search Form
    • Geolocation Search for Half Map
    • Save Search Theme Options
    • Advanced Search Colors
  • 5. Agent, Agency & Developers
  • 6. Property Page
  • 7. Properties List
  • 8. Property Taxonomies
  • WpResidence Elementor Studio
  • 10. Blog Posts & Blog List
  • 11. Shortcodes
    • Contact Form
    • Featured Agency/Developer
    • Membership Packages
    • Testimonials
    • Google Map with Property Marker
    • Listings per Agent, Agency or Developer
    • Display Categories
    • Agent List
    • Recent Items Slider
    • Recent items
    • List Properties or Articles by ID
    • Featured Agent
    • Featured Article
    • Featured Property
    • Login & Register Form
    • Icon Content Box Shortcode
  • 12. Widgets
  • Theme Options
    • General Settings
    • User Types Settings
    • Appearance
    • Logos & Favicon
    • Header
    • Footer Style and Colors
    • Price & Currency
    • Property Custom Fields
    • Features & Amenities
    • Listing Labels
    • Theme Slider
    • Permalinks
    • Splash Page
    • Social & Contact
    • Map Settings
    • Pin Management
    • How read from file works
    • General Design Settings
    • Custom Colors Settings
    • Header Design & Colors
    • Mobile Menu Colors
    • User Dashboard Colors
    • Print PDF Design
    • Property, Agent, Blog Lists Design Settings
    • Sidebar Widget Design
    • Font management
    • How to add custom CSS
    • Custom Property Card Unit – Beta version
    • Email Management
    • Import & Export theme options
    • reCaptcha settings
    • YELP API Integration
    • iHomefinder Optima Express IDX
    • MEMBERSHIP & PAYMENT Settings
    • Property Submission Page
    • PayPal Setup
    • Stripe Setup
    • Wire Transfer Payment Method
  • Translation
  • FAQ
  • Pages
  • Header
  • Footer
  • Google or Open Street Maps
  • Payment Options
  • Plugins
    • Included Plugins
    • Third Party Plugins – IDX Compatibility
    • Third Party Plugins – Multi Languages
    • Third party Plugins – Other
  • Technical
    • Technical how to | Custom Code Required
    • Technical: Child Theme

Join Us On

Powered by WP Estate - All Rights Reserved
  • WpEstate
  • How to Build Your Website
  • Video Tutorials
  • Client Support
  • API