Skip to main content
Michael234896374nmy
Participant
March 19, 2026
Question

PVII Adaptive Menu Magic

  • March 19, 2026
  • 2 replies
  • 58 views

Hallo zusammen,

ich suche ehemalige Nutzer von Project Seven / PVII, speziell von „Adaptive Menu Magic (AMM)“.

Die offizielle Website scheint nicht mehr verfügbar zu sein. Ich versuche daher herauszufinden, ob es noch eine legale Möglichkeit gibt, AMM zu erwerben, eine Lizenz zu übernehmen oder zumindest an Original-Dokumentation und Installer zu kommen.

Falls jemand AMM früher gekauft hat und Informationen zu Installer, Lizenz oder möglicher Übertragbarkeit hat, freue ich mich über eine Nachricht.

Vielen Dank

    2 replies

    Legend
    March 20, 2026

    Gerry NOT Gary. Anyway as you say PVll disappeared suddenly, without notice, as far as lm aware. A rather peculiar end to what in its day was a rather excellent company, kind of would have been a more appropriate end had it been more amplified.

    Nancy OShea
    Community Expert
    Community Expert
    March 19, 2026

    PVII is officially dead. The co-founder Al Sparber passed away a few years ago and his partner Gerry retired and closed the business without notice last year. So no, there is no legal way to obtain PVII products now because the business no longer exists.

     

    My advice is to steer clear of extensions for something so simple as web page navigation. At its core, navigation is merely CSS styled text links that perform well in all devices. The simpler, the better. 

     

    Below is a working navigation bar made with Bootstrap 5.2.3., the world’s most widely used mobile-first framework for creating responsive websites.

     

    <!doctype html>
    <html lang="en">
    <head>
    <title>Bootstrap 5.2.3 Demo</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--Bootstrap Minified CSS-->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
    </head>

    <body>
    <!--Start navigation bar-->
    <nav class="navbar navbar-expand-md bg-light">
    <div class="container-fluid">
    <!--optional branding-->
    <a class="navbar-brand" href="#">
    <img src="https://picsum.photos/50/50" alt="placeholder image"> Brand
    </a>
    <!--Hamburger button on smaller devices-->
    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
    <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse" id="navbarSupportedContent">
    <ul class="navbar-nav me-auto mb-2 mb-lg-0">
    <li class="nav-item">
    <a class="nav-link active" aria-current="page" href="#">Home</a>
    </li>
    <li class="nav-item">
    <a class="nav-link" href="#">Link</a>
    </li>
    <li class="nav-item dropdown">
    <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Dropdown </a>
    <ul class="dropdown-menu">
    <li>
    <a class="dropdown-item" href="#">Action</a>
    </li>
    <li>
    <a class="dropdown-item" href="#">Another action</a>
    </li>
    <li>
    <hr class="dropdown-divider">
    </li>
    <li>
    <a class="dropdown-item" href="#">Something else here</a>
    </li>
    </ul>
    </li>
    </ul>
    <!--Optional search form, must be connected to Google API or other search engine-->
    <form class="d-flex" role="search">
    <input class="form-control me-2" type="search" placeholder="Search" aria-label="Search"/>
    <button class="btn btn-outline-success" type="submit">Search</button>
    </form>
    <!--end search form-->
    </div>
    </div>
    </nav>
    <!--end navigation-->

    <!--Begin main content-->
    <div class="container py-4">
    <header class="row pb-3 mb-4">
    <div class="col-12">
    <h2>Bootstrap 5.2.3 Starter Page</h2>
    <p>Two-column layout</p>
    </div>
    </header>

    <!--begin 2-column layout-->
    <main class="row">
    <div class="col-md-6">
    <p>The content. Sriracha biodiesel taxidermy organic post-ironic, Intelligentsia salvia mustache 90's code editing brunch. Butcher polaroid VHS art party, hashtag Brooklyn deep v PBR narwhal sustainable mixtape swag wolf squid tote bag. Tote bag cronut semiotics, raw denim deep v taxidermy messenger bag. Tofu YOLO Etsy, direct trade ethical Odd Future jean shorts paleo. Forage Shoreditch tousled aesthetic irony, street art organic Bushwick artisan cliche semiotics ugh synth chillwave meditation. Shabby chic lomo plaid vinyl chambray Vice. Vice sustainable cardigan, Williamsburg master cleanse hella DIY 90's blog.</p>
    </div>
    <div class="col-md-6">
    <p>Ethical Kickstarter PBR asymmetrical lo-fi. Dreamcatcher street art Carles, stumptown gluten-free Kickstarter artisan Wes Anderson wolf pug. Godard sustainable you probably haven't heard of them, vegan farm-to-table Williamsburg slow-carb readymade disrupt deep v. Meggings seitan Wes Anderson semiotics, cliche American Apparel whatever. Helvetica cray plaid, vegan brunch Banksy leggings +1 direct trade. Wayfarers codeply PBR selfies. Banh mi McSweeney's Shoreditch selfies, forage fingerstache food truck occupy YOLO Pitchfork fixie iPhone fanny pack art party Portland.</p>
    </div>
    </main>
    </div>

    <!--Bootstrap Minified JS bundle-->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
    </body>
    </html>

     

    [Edited Gerry’s name]

     

    Hope that helps. Feel free to post back if you have more questions.

     

    Nancy O'Shea— Product User & Community Expert