Manually Create a Sticky Floating Footer Bar in WordPress

Watch out! This tutorial is over 8 years old. Please keep this in mind as some code snippets provided may no longer work or need modification to work on current systems.

A sticky floating footer bar allows you to prominently display your important content to users. This bar remains visible to users at all time, so they are more likely to click on it and discover more useful content.

This method requires you to add code in your WordPress files, so we will be using the File Manager plugin, already installed on the DkIT WordPress servers.

Continue reading

Hello World in Javascript

Watch out! This tutorial is over 8 years old. Please keep this in mind as some code snippets provided may no longer work or need modification to work on current systems.

This is how you would display “Hello World” to the browser in Javascript.

<!DOCTYPE HTML>
<html>
<body>
 
  <p>Header...</p>
 
  <script>
    alert('Hello, World!')
  </script>
 
  <p>...Footer</p>
 
</body>
</html>