Product Description This simplified design is taken from an archive document and creates a lovely lattice, similar to a trellis. With a hint of geometric form, Fretwork has a hand-drawn feel, with its imprecise markings creating character. A little wonky, the irregular pattern of Fretwork is charming, giving a cottage feel—a perfect match to the wallpaper in scale. Product Specification Item Type: Printed Fabric Collection: Oakham Fabrics Design Code: 121321 Brand: Scion Usable Width: 140.5 cm / 55.31 in Vertical Pattern Repeat: 30.5 cm / 12.01 in Horizontal Pattern Repeat: 28 cm / 11.02 in Pattern Match: Straight Match Composition: 90% Cotton 10% Linen Unit of Measure: Metre Technical Information FR Standards: Failed Treatment Trials, Treatable to BS5852 (1) Match FR Test Results: Meets Cig Test BS5852 (0) Interliner Allowed (More than 75% Natural Fibres) Treatable to BS5852 (1) Match Test Print Method: Eco Fast Track Printed Fabric After Care: No Machine Wash - SDC / No Ble / No tumb / C Iron / Iron Rev / SDC (Spec) /* This CSS ensures the custom icons work and is now RESTRICTED to only apply to elements with the class .product-info-details */ .product-info-details > summary { list-style: none; /* Hide default triangle/arrow */ } .product-info-details > summary::after { content: '+'; /* Default state: show plus sign */ font-size: 1.5em; margin-left: 10px; } /* The Product Description dropdown will now show the minus sign when open */ .product-info-details[open] > summary::after { content: '−'; /* Open state: show minus sign */ } /* Ensure the icon is placed correctly when hiding the default marker */ details > summary { list-style-type: none; } // FIX: Aggressively ensures the Description is open and others are closed on load. document.addEventListener("DOMContentLoaded", function() { // 1. Force Open the Description (Box 1) const descriptionElement = document.querySelector('.description-details'); if (descriptionElement) { descriptionElement.setAttribute('open', 'open'); } // 2. Force Close the Specification (Box 2) const specElement = document.querySelector('.product-spec'); if (specElement) { specElement.removeAttribute('open'); } // 3. Force Close the Technical Info (Box 3) const techElement = document.querySelector('.product-tech'); if (techElement) { techElement.removeAttribute('open'); } });