Key Takeaways:
– Erik Carlson has been appointed as the new CEO of RE/MAX Holdings
– Carlson previously served as president and CEO of DISH Network Corporation
– Carlson is praised for his experience in operational, customer-centric, and sales roles at DISH
– Interim CEO Stephen Joyce is stepping down but will remain on the board of directors
– Carlson’s appointment comes during a challenging period in the real estate industry, with lawsuits alleging collusion and inflated commissions
– RE/MAX has reached a settlement agreement for some lawsuits, but it has yet to be approved.
HousingWire:
After a nearly two-year search, RE/MAX Holdings, the parent company of brokerage firm RE/MAX, has found its new CEO. The board of directors has appointed Erik Carlson to CEO, effectively immediately, according to an announcement on Monday.
Carlson has most recently served as president and CEO of DISH Network Corporation, where he has worked since 1995.
“Erik is the ideal executive to take over as the new RE/MAX Holdings CEO, having excelled in various operational, customer-centric and sales roles at DISH,” Dave Liniger, the co-founder of RE/MAX and current chairman of the board, said in a statement. “He is a strong, well-rounded leader with decades-long experience overseeing large businesses and managing high-performance teams in a disruptive industry, with a self-described ‘obsessive focus on the customer,’ all of which makes him uniquely qualified to lead RE/MAX Holdings through its next phase of growth.”
With Carlson’s appointment, interim CEO Stephen Joyce is stepping down, however he will remain on the company’s board of directors. Joyce was named interim CEO in January 2022, after former CEO Adam Contos announced that he would be leaving RE/MAX in March 2022.
Prior to becoming the president of DISH in 2017, Carlson held several leadership roles at the firm, including president and chief operating officer. Earlier in his career. Carlson led DISH’s indirect sales operations.
“I am excited to start this next chapter in my career as CEO of RE/MAX Holdings, and I am honored to be part of the all-time global leader in its industry, a company whose entrepreneurial spirit I have long admired,” Carlson said a statement. “I look forward to joining the RE/MAX Holdings team and applying my operational expertise as well as my experience working with local businesses and serving local communities to further extend the Company’s success.”
Carlson is taking the helm at RE/MAX during a challenging period in the real estate industry, as RE/MAX, the National Association of Realtors and countless other brokerages are facing multiple lawsuits alleging that industry players have colluded to artificially inflate real estate agent commissions. While RE/MAX has reached a settlement agreement for the Sitzer/Burnett, Moehrl and Nosalek lawsuits, the settlement has yet to be approved. The preliminary hearing for the settlement in the Sitzer/Burnett suit in Missouri has been set for November 20.
Source link
Property Chomp’s Take:
Hey there! Today, let’s talk about a widely used element in web development called the `
So, what exactly is a `
Think of a `
For example, let’s say you want to create a section on your webpage that contains some text and an image. You can use a `
“`html
Welcome to my Website!
“`
By enclosing the heading (`
`) and the image (`
`) inside a `
`, you can apply styles, such as setting the background color, adding padding or margins, or even applying a border to the entire section.
Additionally, the `
` tag is often used in conjunction with CSS (Cascading Style Sheets) to control the layout and appearance of web pages. CSS allows you to target and style specific `
` elements or groups of `
` elements, giving you full control over the design and structure of your webpage.
For example, you can use CSS to center-align the content inside a `
` by applying the following style rules:
“`css
div {
display: flex;
justify-content: center;
align-items: center;
}
“`
In this case, the `display: flex` property creates a flexible box layout, while `justify-content: center` and `align-items: center` center-align the content horizontally and vertically within the `
`.
So, as you can see, the `
` tag is a versatile and powerful tool in web development. It allows you to group, style, and structure your webpage content, making it easier to create visually appealing and well-organized websites.
Next time you’re creating a webpage, don’t forget to make good use of the `
` tag. It’s a simple yet essential element that can make a big difference in the overall design and functionality of your website.
Additionally, the `
For example, you can use CSS to center-align the content inside a `
“`css
div {
display: flex;
justify-content: center;
align-items: center;
}
“`
In this case, the `display: flex` property creates a flexible box layout, while `justify-content: center` and `align-items: center` center-align the content horizontally and vertically within the `
So, as you can see, the `
Next time you’re creating a webpage, don’t forget to make good use of the `