I used a tutorial at http://www.w3schools.com/jquery/jquery_css.asp to use jQuery to allow visitors to change styles. I created two buttons, one which allows visitors to change the font to Georgia, another to change the background and font colors.
This is my code:
<script> $(document).ready(function(){ $("button#btn24").click(function(){ $(".Page1").css({"font-family":"Georgia"}); $("header").css({"font-family":"Arial"}); }); }); $(document).ready(function(){ $("button#btn25").click(function(){ $(".Page1").css({"background-color":"black","color":"fff"}); }); }); </script> <button id="btn24" style="background: #900; font-family: Georgia;">Georgia</button> <button id="btn25" style="background: #000;">Black</button> Now I'm ready for the next step - allowing users to return to the default style. Are there ways to remove the styles invoked by a button, two or more buttons or all buttons?