MyBB Community Forums

Full Version: Custom Mouse Cursor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Here's what you need to do:

1. Create an image for your cursor and rename it to example.cur
2. Upload the image to the root of your forum.
3. Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.
4. Inside the body property put cursor: url("example.cur"); so it should look a little something like this:

body {
    background: #fff;
    color: #000;
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 13px;
    text-align: center; 
    line-height: 1.6em;
    margin: 0;
    text-align: center;
    cursor: url("example.cur");
}

Please note this only seems to work under IE6 and Google Chrome, I don't think there's a cross-browser solution for this.
thanx Smile
Pages: 1 2