Okay, I have a few basic css questions because i am way too stupid to do this.
1, How do I change the font on my profile? I tried to do this:
"{ font-family: "Times New Roman", Times, serif; }" But it didn't work.
- How do I make my cursor custom? I don't think your cursor is custom but I've seen other pages have custom cursors.. All the CSS tutorials I see don't work and I'm not the smartest person. Help is greatly appreciated.
- You don't seem to have a selector, unless you copy pasted wrong. to select all the text on a page you need to do
* { ... }
, the code below is how you would apply the specific font you have there to your profile
* { font-family: "Times New Roman", Times, serif; }
You can have other fonts by using a font link and @font-face
, like so
@font-face { font-family: font-name; src: url(font-link); } * { font-family: font-name; }
I use a laptop so the way I get font links are by downloading the font from a site like Dafont, unzipping it, and uploading the .ttf
file inside the folder to a file hoster like File Garden, I'm not sure how mobile users do it though
- To add a custom cursor you would use the code below
* { cursor: url(cursor-image-link), auto !important; }
Do keep in mind that using a cursor image any bigger than 32x32px won't work, if your cursor image doesn't seem to work try downsizing it
Leave a comment