What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

Recent content by tony_maguire

  1. T

    Why can't I find any PC's with Windows 7?

    Windows 7 Professional and Windows 8 will continue to be available as a pre-installed option for select business-grade desktop and laptop computers. Unfortunately, the main drawback of this approach is that you are purchasing an entire system and not just a Windows license. Regards, Tony
  2. T

    Install local apk via html link

    You need to ensure your web server that is going to deliver the APK sets the MIME type properly. It should be application/vnd.android.package-archive for .apk files. Regards, Tony
  3. T

    Creating html table with fixed header and scrolling rows

    Try this: div class="table-wrapper"> <table> <thead> <tr> <th>Header 1</th> <th>Header 2</th> <th>Header 3</th> </tr> </thead> <tbody> <tr> <td>Text</td>...
  4. T

    HTLM code for calculate distance

    Try this: function calculateDistance() { var pointx1 = parseInt(document.getElementById("pointx1").value); var pointy1 = parseInt(document.getElementById("pointy1").value); var pointx2 = parseInt(document.getElementById("pointx2").value); var pointy2 =...
  5. T

    Multiple modal popups not working

    Try this: Example: /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if...
  6. T

    File name change - date

    function saveContent(fileContents, fileName) { var link = document.createElement('a'); link.download = fileName; link.href = 'data:,' + fileContents; link.click(); } Try this & let me know if it was helpful. Regards, Tony.

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back