Changing font size
I am using the following to enlarge/reduce my font size:
<script language="JavaScript" type="text/javascript">function changeFontSize(inc){ var p = document.getElementsByTagName('p'); for(n=0; n<p.length; n++) { if(p[n].style.fontSize) { var size = parseInt(p[n].style.fontSize.replace("px", "")); } else { var size = 12; } p[n].style.fontSize = size+inc + 'px'; }}</script>
There are two elements in my site (see
http://69.195.124.81/~workinv1/livin...kong-for-kids/ ) that aren't changing size:
div.textwidget
content ul li
This is driving me crazy! Can anyone offer any advice? Thanks in advance.