PDA

View Full Version : Different Cursors Chosen by Members


theodonnells
10-03-2006, 11:02 PM
I have set up a profile field where members can choose different cursors on the site.It is working but i think its playing havoc with my css, as google yahoo etc arent showing my forum images in their cache only the text.
I have this code in my headinclude:
<if condition="is_member_of($bbuserinfo, 1,3,8,29)">
<style>
<!--
BODY{
CURSOR: url(http://www.toonsunited.com/yellow.cur);
}
-->
</style>
</if>
<if condition="is_member_of($bbuserinfo, 2,5,6,7,25,30,56,22)">
<style>
<!--
BODY{
CURSOR: url(http://www.toonsunited.com/$bbuserinfo[field43].cur);
}
-->
</style>
</if>
I have deleted the default cursor code from the main css.
Is this the correct place to have this code or is there a better way.