Morning trading May 5, page-238

  1. 334 Posts.
    lightbulb Created with Sketch. 5
    @Davidbes - if you install Greasemonkey extension and use this, it will be fixed position

    // ==UserScript==
    // @name Hotcopper fixed nav
    // @version 1
    // @grant none
    // @Match https://hotcopper.com.au/*
    // @RUN-at document-end
    // ==/UserScript==
    function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style);}
    addGlobalStyle('header .row-top .nav-top .nav-right { position: fixed !important; top: 50px !important; right: 0 !important; display: block !important; height: 40px !important; x-index: 9999 !important; }');
 
arrow-down-2 Created with Sketch. arrow-down-2 Created with Sketch.