User comments: Gyan1010
to user page| Crossword | Date | Comment |
|---|---|---|
| French Bulldog | 27 November 2018, 5:48 | Nice puzzle. Tip: If you want to freeze the numbers to the left and top of the screen, and still have them scroll, with the board, follow these steps. 1) Use chrome and get a script injector like https://chrome.google.com/webstore/detail/script-injector/fddnddnolonllcgfbenaloajnbhebmob 2) In options add a line for a jQuery cdn such as https://code.jquery.com/jquery-2.2.4.min.js 3) Reload and inject the jQuery. 4) Open the console in dev tools and run... $( window ).scroll(function() { $('.content > #nonogram_table > tbody > tr:first-child').css({'position': 'fixed', 'top': 0, 'left': $('.nmtc').offset().left - $(window).scrollLeft() - 6}); $('.nmtl').css({'position': 'fixed', 'top': $('.nmtc').offset().top - $(window).scrollTop(), 'left': 0}); }) 5) Scroll the page. |
