-->

Friday, October 30, 2015

Add a Custom Cursor to your Profile

Adding a custom cursor to you profile is pretty easy.

In you custom css section, look for the block of code that starts with "body {". The exact code will vary, but will look a little something like this:

body {
  background-color:black;
  font-family:-webkit-pictograph;
  font-weight:400;
  font-style:oblique;
  font-size:17px;

}

You will want to add your cursor code to that section. So make another line between those brackets ({ }), and paste the following code:

cursor:url(Image_url_goes_here),auto;

Just make sure to replace the "Image_url_goes_here" with the url to the image you want to use as your cursor.


So now your block of code will look something like this:

body {
  background-color:black;
  font-family:-webkit-pictograph;
  font-weight:400;
  font-style:oblique;
  font-size:17px;

  cursor:url(Image_url_goes_here),auto;
}

Here's a collection of different cursors, just right click on them and copy the image url (if using firefox, right click and copy the "image location"):









No comments:

Post a Comment