I need to change the background image of id=main_touch
when someone hovers over the class=buttontpt
Following way hover is not working.
<style>
#main_touch {
background: url(custom12/<?=$this->mylanguage;?>.jpg) 0 0 no-repeat;
}
#main_touch:hover {
background: url(custom12/<?=$this->mylanguage;?>.hover.jpg) 0 0 no-repeat;
}
</style>
<img src="custom12/<?=$this->mylanguage;?>.jpg" width="1024" height="768" border="0" usemap="#map" id="main_touch" />
<map name="map">
<area shape="rect" coords="26,72,405,194" nohref="nohref" class="buttontpt" />
<area shape="rect" coords="26,240,405,362" nohref="nohref" class="buttontpt" />
<area shape="rect" coords="26,403,405,525" nohref="nohref" class="buttontpt" />
<area shape="rect" coords="26,555,405,677" nohref="nohref" class="buttontpt" />
</map>