WP Residence Help WP Residence Help

  • WPRESIDENCE
  • Video Tutorials
  • Client Support
  • API
Home / Header, Theme Options & Global Settings / Theme Options – General – Logos & Favicon

Theme Options – General – Logos & Favicon

19365 views 1

The Logos & Favicon settings control the main branding images used across your WPResidence website. From this section you can upload the favicon, standard header logo, sticky header logo, transparent header logo, mobile/tablet logo, and print page logo.

Use this panel when you want to replace the default WPResidence branding with your own company logo and make sure the correct logo version appears in each website area.

Important: Different header situations can use different logo files. For example, the standard header, sticky header, transparent header, mobile header, and print/PDF page can each use their own logo.

Content

  • Where to find Logos & Favicon
  • Favicon
  • Standard Logo
  • Sticky Logo
  • Transparent Header Logo
  • Mobile / Tablet Logo
  • Print Logo
  • Retina logo versions
  • Increase logo size from Theme Options
  • SVG logo troubleshooting
  • Increase logo size with custom CSS
  • Clear cache after changing logos
  • Related help articles
Before reading this help file you may want to check this video. It explains how to manage your website logos & more branding details and may be easier to understand. Watch Video on Youtube

Where to find Logos & Favicon

To upload your own logos and favicon, go to:

Theme Options > General > Logos & Favicon

From this panel you can manage the main logo images used by the theme.


WPResidence Logos and Favicon settings

Favicon

The Favicon is the small icon displayed in the browser tab.

Upload your favicon from:

Theme Options > General > Logos & Favicon

Tip: Use a square image for the favicon. A clean version of your logo or brand icon works best because the browser displays it at a small size.

Standard Logo

The Standard Logo is used in the regular website header menu.

This is the main logo visitors see when the normal header is displayed.


WPResidence standard logo in header menu

Sticky Logo

The Sticky Logo is used in the sticky menu.

The sticky menu appears when the visitor scrolls down the page, if the sticky header option is enabled on the site.

Tip: The sticky header often has a different height or background color than the main header. If your standard logo does not look good in the sticky header, upload a separate sticky logo.

Transparent Header Logo

The Transparent Header Logo is used when the transparent header is enabled.

This logo appears over the hero area, usually above an image, video, or slider background.

Related help:
How to manage Transparent Header

Important: Use a logo color that is visible over the transparent header background. For example, if the hero image is dark, a light logo version usually works better.

Mobile / Tablet Logo

The Mobile / Tablet Logo is used in the mobile header.

Upload a mobile logo if your desktop logo is too wide, too tall, or hard to read on small screens.


WPResidence mobile logo example

Tip: For mobile, use a simpler logo version if needed. A compact horizontal logo or icon-only version can work better on small screens.

Related help:
Working with the Mobile Header in WPResidence

Print Logo

The Print Logo is used on the print/PDF version of the property page.

This is the logo visitors see when they use the print or PDF option from a property page.

Related help:
Theme Options – Property Page – Print Page Design

Retina logo versions

Retina logos are higher-resolution versions of the same logo. They are used on high-density screens, such as many modern phones, tablets, and laptops.

A retina logo keeps the logo sharp instead of blurry on these devices.

How retina logo files must be named

The retina logo file must have the same name as the standard logo file, with _2x, _3x, or _4x added before the file extension.

Example:

  • logo.png – standard logo
  • logo_2x.png – retina version for 2x screens
  • logo_3x.png – retina version for 3x screens
  • logo_4x.png – retina version for 4x screens

The same rule applies to the standard logo, sticky logo, transparent header logo, and mobile/tablet logo.

How to upload retina logos correctly

  1. Create the standard logo file, for example logo.png.
  2. Create the retina versions using the same file name and the correct suffix, for example logo_2x.png, logo_3x.png, and logo_4x.png.
  3. Upload the standard logo in Theme Options > General > Logos & Favicon.
  4. Upload the retina versions in the WordPress Media Library.
  5. Make sure the retina versions are uploaded in the same month as the standard logo, so WordPress saves them in the same uploads folder.
  6. Save Theme Options.
  7. Clear cache and reload the website.
Important: The file names must match exactly. If your standard logo is named my-company-logo.png, the retina versions must be named my-company-logo_2x.png, my-company-logo_3x.png, and my-company-logo_4x.png.

Related help:
How to add the retina logos version correctly

Increase logo size from Theme Options

By default, the header menu area has a height of 90px. This means the logo must fit inside this available header height.

You can control the logo height from:

Theme Options > General > Logos & Favicon


WPResidence logo height settings

If your logo is taller than the header or sticky header area, increase the header height as well.

Go to:

Theme Options > Header > Header Settings


WPResidence header height settings

Important: If you increase only the logo size but not the header height, the logo may look cropped or too close to the menu items.

SVG logo troubleshooting

You can use an SVG file as a logo, but the SVG file must include proper dimensions.

When an SVG logo does not appear or looks invisible

Sometimes an SVG logo is uploaded correctly, but it does not show on the website. This can happen when the SVG file does not include explicit width and height attributes inside the SVG code.

Without these dimensions, some browsers or theme layouts may render the logo at zero size, so it appears invisible.

Why this happens

SVG files are scalable by design. Some SVG files include only a viewBox, without fixed width and height values.

If the theme or browser does not receive a clear width and height from the file, the logo area can collapse and the logo may not display.

How to fix the SVG file

  1. Open the SVG file in a vector editor such as Figma, Adobe Illustrator, or Inkscape. You can also use a plain text editor.
  2. Make sure the document or artboard is sized to the desired default logo size.
  3. Export the SVG with width and height attributes included in the <svg> tag.

Example:

<svg width="200" height="60" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg">

Save the file and upload the updated SVG again in WordPress.

Important: Adding width and height tells the browser how large to render the SVG. This prevents the SVG logo from collapsing to 0 x 0 and helps it display consistently.

Increase logo size with custom CSS

You can also adjust the logo size with custom CSS.

Add custom CSS in:

Theme Options > Design > Custom CSS

To change the normal logo height, use:

.logo img {
    max-height: 54px;
}

Change 54px to your preferred value.

To change the sticky menu logo size separately, use:

.customnav .logo img {
    max-height: 65px !important;
}

Change 65px to your preferred value.

Tip: If you use custom CSS to increase the logo height, also check the header height from Theme Options > Header > Header Settings.

Related help:
How to add custom CSS

Clear cache after changing logos

After uploading or replacing logos, clear cache if the new image does not appear immediately.

If WPResidence theme cache is enabled, clear it from the admin top bar using the Clear WPResidence Cache option.


Clear WPResidence cache button

You should also clear any active cache plugin, server cache, or CDN cache if used.

Related help:
How to Enable / Disable WPResidence Cache

Related help articles

  • How to add the retina logos version correctly
  • How to manage Transparent Header
  • Working with the Mobile Header in WPResidence
  • How to change mobile header height and logo size
  • How to change Header Type. How to change Logo / Menu position
  • Customizing the WPResidence Logo Display
  • Theme Options – Property Page – Print Page Design
  • How to add custom CSS
  • How to Enable / Disable WPResidence Cache
HeaderTheme Options & Global Settings

Related Articles

  • How to Control Similar Blog Posts
  • ACF – Advanced Custom Fields – Integration with WPResidence
  • Theme Options – Roles (Editor) Permissions Controls
  • Theme Options -> Agent Card Settings

Help Categories

  • 18Agent, Agency & Developers
  • 5Blog Posts & Blog Lists
  • 38Elementor Shortcodes Built-In
  • 45FAQ
  • 15Footer
  • 5Getting Started
  • 37Header
  • 2IDX & MLSImport
  • 6Installation & Setup
  • 23Installation FAQ
  • 23Maps & Location Settings
  • 21Multi-Language Third Party Plugins
  • 6Other Third party Plugins
  • 19Pages
  • 4Payments & Monetization
  • 20Property Lists, Categories & Archive
  • 36Property Pages & Layouts
  • 31Search & Filtering
  • 162Technical how to | Custom Code Required
  • 8Technical: Actions and filters
  • 6Technical: Child Theme
  • 86Theme Options & Global Settings
  • 6Translations & Languages
  • 16WPBakery Shortcodes
  • 51WPResidence / WPEstate CRM
  • 50WPResidence 5.0 Documentation
  • 8WPResidence Elementor Studio
  • 50WPResidence Translate Plugin

Join Us On

Powered by WP Estate - All Rights Reserved
  • WPRESIDENCE
  • Video Tutorials
  • Client Support
  • API