HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  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

    Professional Office 365 email signature solution

    Try this: Set up an email signature in Office 365 Log in to the Office 365 portal using an Exchange Online administrator account and access the Microsoft 365 admin center. Expand Admin centers and click Exchange. In the Exchange admin center, go to mail flow and rules. Click the plus icon and...
  3. 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
  4. 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>...
  5. 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 =...
  6. 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...
  7. 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.
Back
Top