Support Forums

Full Version: userContent.css
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This neat trick will change the mouse pointer when

you hover it over links that will open a new window. Add the following code to your userContent.css file:
Code:
/* Change cursor for links that open in

new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"],   :visited[target="_new"] {
   cursor:  crosshair;
}


This tip will change the mouse pointer when you hover it over links that will perform a JavaScript command. Add the following code to

your userContent.css file:
Code:
/* Change cursor for JavaScript links */
a[href^="javascript:"] {
   cursor: move;
}
where is the userContent.ccs file located at?
That I have no clue. It would be easier for

you to download ChromEdit or Mr Tech Local Install and edit it with those.

It's much easier to edit it with those, I use ChromEdit (made compatible

with Mr Tech Local Install)

FW
It is full of great information.I have shown your css file.I have edit the css file with ChromEdit.I have used this css file in my project.I found it and searching on Google.