Download My Mobile App

Mortgage Tools at your Fingertips

Getting started is easy. Simply enter your mobile number in the box below and we will send you a text message with a link to the mobile app.

mobile view graphic expander
mobile view graphic frame mobile view graphic content
Available On:

App Features:

  • Find out what you can Afford
  • Calculate your Future Mortgage
  • Get Pre-Approved
  • Upload Loan Docs
  • Connect with your Loan Officer

NMLS# 2621003

Dream House Virginia, LLC

Dream House Virginia, LLC
701 N Courthouse Road Suite 201, Richmond, VA 23236

All first mortgage products are provided by Dream House Virginia, LLC products may not be available in all areas. ©2026 Dream House Virginia, LLC

// --- JOSHUA JOHNSON: DIRECTORY PAGE SCRIPT --- // 1. Find Joshua's specific link to locate his profile block const joshuaLink = document.querySelector('a[href="/loan-officer/joshua-johnson"]'); if (joshuaLink) { // Traverse up to his specific container row const profileCard = joshuaLink.closest('.row.mb-3'); if (profileCard) { // 2. Update Title and NMLS const labels = profileCard.querySelectorAll('label'); if (labels.length >= 2) { labels[0].innerText = 'Owner/Broker'; labels[1].innerText = 'NMLS: 1756718 | Company NMLS: 2621003'; } // 3. Update Phone Number const phoneLink = profileCard.querySelector('a[href^="tel:"]'); if (phoneLink) { phoneLink.href = 'tel:804-882-5959'; phoneLink.innerText = '804-882-5959'; } // 4. Update Email Link (Leaves visible text as "Email Joshua") const emailLink = profileCard.querySelector('a[href^="mailto:"]'); if (emailLink) { emailLink.href = 'mailto:josh@dreamhousevirginia.com'; } } }