PRACTICE

ONTIC: adjective – philosophy- Relating to entities and the facts about them; relating to real as opposed to phenomenal existence

PRACTICE

Ontic Works is an architecture studio in Toronto. It is a creative hub where innovative designs and architectural concepts are developed and brought to fruition.

Founded by  Babak Abnar, who have made significant contributions to both local and global architectural landscapes. His designs often blend contemporary elements with traditional influences, creating unique and culturally resonant spaces.

APROACH

Imbued with a meticulous dedication to craft, Ontic Works meticulously invests an extended duration in the design process of each project, surpassing conventional norms. This intentional endeavor allows for the cultivation of an unparalleled architectural expression, thoughtfully tailored to the specific needs and aspirations of discerning clients.

Click Save to apply the script. 3. Add Global CSS for Draggable Text Go to Appearance > Customize > Additional CSS. Add the following CSS: css Copy code .draggable-text { position: relative; z-index: 9999; cursor: grab; display: inline-block; /* Ensures the text is treated as a block for dragging */ } document.addEventListener('mousemove', function(e) { if (isDragging) { image.style.left = (e.clientX - offsetX) + 'px'; image.style.top = (e.clientY - offsetY) + 'px'; image.style.position = 'absolute'; } }); document.addEventListener('mouseup', function() { isDragging = false; image.style.cursor = 'grab'; // Optionally reset the z-index after dragging image.style.zIndex = 9999; }); }); });