I am creating a website for a childrens hospice and am tring to get the font to be changble.
I ahve got this working and all is well in internet explore but in Firefox some pages stay a different size once you cahnge back to the original size.
has anyone come accross this before or know how to fix it.
http://www.360fusion.co.uk/zoe
This is the code is use in the template:
Code: Select all
<div id="fontSizer">
<img src="img/layout/fontsize.jpg" alt="Change Font Size" class="fontsize" border="0" />
<a href="[FontSize-]" title="make smaller"><img src="img/layout/font_smaller.gif" alt="Smaller" class="buttonSmaller" border="0" /></a>
<a href="[FontSize+]" title="make bigger"><img src="img/layout/font_larger.gif" alt="Bigger" class="buttonBigger" border="0" /></a>
</div>
Code: Select all
#fontSizer {
border-bottom: 1px dotted #005aab;
padding-top: 7px;
padding-bottom: 5px;
margin-bottom: 10px;
color: #002b51;
}
#fontSizer .buttonSmaller {
position: relative;
}
#fontSizer .buttonBigger {
position: relative;
}
Ben