2026/02/04 MAX Website Revamp Announcement

Dear MAX Users ,

Thank you for your continued support and trust in MAX. To provide a more stable, smoother, and more comprehensive trading experience, we are pleased to announce that the new MAX official website has been officially launched today.

(Visit the new website)

The revamped website features a more modern interface and an interaction design that is closely aligned with the MAX App, allowing for a more familiar and seamless experience across different devices. In addition, we have introduced several key features, including Trading Bots and On-chain Staking, which are now fully accessible via the web platform.

We sincerely invite you to explore the new website and experience the improved workflow and functionality.

If you encounter any issues while using the new website or have any suggestions or feedback, please feel free to contact us through the channels below:

  • Customer Support Email: max@maicoin.com
  • APP: Profile > Contact Us > Online Chat
  • Official Website: Online chat available at the bottom-right corner of the page

Thank you for your continued support.

MAX Digital Asset Exchange

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.
document.addEventListener("DOMContentLoaded", function() { // 1. 定義目標:請根據貴公司目前 Freshdesk 版型的實際 class 進行微調 // 預設的標題通常是 h1 或 .article-title,內文通常是 .article-body const articleTitle = document.querySelector('h1') || document.querySelector('.article-title'); const articleBody = document.querySelector('.article-body'); if (articleTitle && articleBody) { // 2. 抓取文章內文的「第一個子元素」 const firstElement = articleBody.firstElementChild; // 3. 判斷:如果第一個元素是我們約定好的 H3,就將其視為附標題 if (firstElement && firstElement.tagName === 'H3') { // 替它加上專屬的 Class 標籤,方便稍後用 CSS 改變樣式 firstElement.classList.add('custom-article-subtitle'); // 將這個 H3 從內文中拔出,移動到主標題的正下方 articleTitle.insertAdjacentElement('afterend', firstElement); } } });