How to change the default cursor in smf forum?

Asked By 0 points N/A Posted on -
qa-featured

Does anyone know a code I should use for my smf forum to modify the cursor? I need to change my cursor, the default one, for example it should change on mouse hover too.

SHARE
Answered By 0 points N/A #161842

How to change the default cursor in smf forum?

qa-featured

Hi Petarpfc,

If you want to change the cursor on smf forum, first you need to add/ change some code.

Here comes the code for changing the cursor on any web-page

Cursor: auto

Cursor: crosshair

Cursor: default

Cursor: e

Cursor: help

Cursor: move

Cursor: n

Cursor: ne

Cursor: Nw

Cursor: pointer

Cursor: progress

Cursor: s

Cursor: se

Cursor: SW

Cursor: text

Cursor: w

Cursor: wait

Each line of code will change the cursor.

You can add this code in the style- sheet but if you are not using style-sheet you can add this code in the head section of the source code.

<Style type="text/css">

Cursor : "what ever from the list above";

</Style>

But if you want change the cursor when someone just move the mouse over the link (hover) the code will be:

<Style type="text/css">

A: hover

{

Cursor: "what ever from the list above";

}

</Style>

You can put this code in smf forum follow it:

_ Open the css file and locate this comment "/* Normal, standard links. */"

_ Find "a:hover" & then add cursor: "What ever from the list above";

_save the css file & upload it to the server to see the change on the live smf forum.

_Change the cursor on blog spot {your blog} then log into your blogger account >> go to layout >> go to edit html>> search for

hover >> you find 2 result > the first result add>>

{

Cursor: "what ever from the list above";

 }

Finally I hope that I know help you.

Thanks.

Related Questions