deviant art

Deviant Login Shop  Join deviantART for FREE Take the Tour
:icondeviantcss:

#deviantCSS

deviantART XHTML & CSS Ref

CSS: Cursors

Wed Apr 8, 2009, 6:23 PM by `AimanStudio:iconaimanstudio:


All Browsers






cursor:default;




cursor:pointer;




cursor:text;




cursor:vertical-text;




cursor:wait;




cursor:progress;




cursor:help;




cursor:move;




cursor:s-resize;




cursor:nw-resize;




cursor:w-resize;




cursor:sw-resize;




cursor:col-resize;




cursor:row-resize;




cursor:not-allowed;




cursor:crosshair;















Internet Explorer (Only)







cursor:hand;




cursor:all-scroll;




cursor:no-drop;
















Firefox | Flock | Safari | Opera








Hidden cursor for Firefox only!

cursor:none;




cursor:-moz-grab;




cursor:-moz-grabbing;




cursor:-moz-zoom-in;




cursor:-moz-zoom-out;




cursor:cell;




cursor:copy;




cursor:alias;









Your Custom Cursors









Coming Soon.... with examples!







SUBMIT A QUESTION!
More Journal Entries

Do you have your own CSS or HTML tutorials? 

78%
624 deviants said No, I'm trying to learn, so I'm here.
16%
129 deviants said No, I'm a CSS Maker but I haven't any tuts.
6%
44 deviants said Yes, ~link-PLZ

Deviants

Group Info

#deviantCSS is a full CSS and HTML resource/guide regarding available places on deviantART that you can use codes into it (e.g. Devious Journal, Custom Module, Artist's Comment, News Article, dAmn Chat, etc)
Super Group
Until Aug 8, 2013

Founded 5 Years ago
Dec 24, 2007

Location
Global

Group Focus
deviantART Related

1,591 Members
2,760 Watchers
145,760 Pageviews
Daily Pageviews

Comments


Add a Comment:
 
:iconfunkygame:
Can someone help me? I want to make my journal. :O
Reply
:iconmiontre:
`miontre 7 hours ago  Hobbyist Photographer
Reply
:iconladyrainashni:
=LadyRainAshni May 16, 2013  New member Hobbyist Digital Artist
Um, can you code the custom box in a group? I tried but it makes the background, but shoves all of the text down below to where the background ends.... Please help me.
Reply
:iconmiontre:
`miontre 4 days ago  Hobbyist Photographer
Also note that you can't use CSS in a custom box. :)
Check out `CypherVisor's page, as he has a lot of useful resources and tutorials for customising a page. :D
Reply
:iconposerfan:
*poserfan 6 days ago  Professional
If it's a supergroup yes, otherwise no.
Reply
:iconladyrainashni:
=LadyRainAshni 6 days ago  New member Hobbyist Digital Artist
Alright, thank you. :)
Reply
:iconposerfan:
*poserfan 6 days ago  Professional
Welcome! :D
Reply
:iconkuroengel:
=KuroEngel Mar 19, 2013  Hobbyist Digital Artist
Hello! I was wondering if anyone here might be able to help me...

I'm not super skilled in css and HTML but I have done my fair share of things.... but aparently DA has set a limit on my capabilities.

I have been trying to get some info in the artists comments on this particular item [link] to show up as a patch of code for others to copy and paste so it is how I want them to submit the info. I've asked someone before but he hasn't really responded in a while so I'm not sure if it's just not doable or he hasn't been on..

Either way it's clear what the info is as it's in between the span code.. An I have tried several different ways and none have worked... So any help would be appreciated. :meow:
Reply
:iconposerfan:
*poserfan Mar 20, 2013  Professional
You need to wrap everything between <code> </code> and even then some tags don't appear correctly.

In this case replace eg the first bracket with the ANSI code for it, then it works.
Reply
:iconkuroengel:
=KuroEngel Mar 20, 2013  Hobbyist Digital Artist
Mm ok thanks! :meow:
Reply
:iconposerfan:
*poserfan Mar 20, 2013  Professional
Welcome! :D
Reply
:iconneurotype:
^neurotype Mar 19, 2013  Hobbyist General Artist
[link] might help? Not totally sure what you're looking for.
Reply
:iconkuroengel:
=KuroEngel Mar 19, 2013  Hobbyist Digital Artist
Yes I think that's what I'm talking about, thanks. If I need more assistance I now know where to look for help, thanks.
Reply
:iconneurotype:
^neurotype Mar 19, 2013  Hobbyist General Artist
:)
Reply
:iconserafina-rose:
*serafina-rose Mar 11, 2013  Hobbyist Digital Artist
Thanks for adding me
:iconredsparklesplz::iconredroseplz::iconredsparklesplz:
Reply
:iconsekaryu:
=Sekaryu Mar 6, 2013  Hobbyist General Artist
Hi.. I recently bought a journal skin from someone.. and they aren't very good with coding.. so the code they sent me for it is all messed up! If I sent the code, would anyone be able to fix it for me? I'd appreciate it~ Thank you!
Reply
:iconsekaryu:
=Sekaryu Apr 1, 2013  Hobbyist General Artist
Thanks for your help everyone!
Reply
:iconnekomailjeevas:
=NekoMailJeevas Mar 31, 2013  Hobbyist Digital Artist
I can have a look. No guarantees though, just in case ^^;
Reply
:iconfluf-studios:
=fluf-studios Mar 4, 2013  Student General Artist
Hello~ :wave:
I've been searching all over dA for the CSS code for redirecting. And by that, I mean a link or a button you can press in order to return to a certain part of the page (like in Wikipedia for example), or a link or a button you can click on a menu, just to go straight ahead to this section (such CSS is demonstrated here: [link] - dAWW) and go back to the top.
However, I can't seem to find any snippets, tutorials or open -sourced journal skins (Any free journal skins actually) containing this.
Thanks for taking your time to read this, and have a lovely day!
Reply
:iconneurotype:
^neurotype Mar 4, 2013  Hobbyist General Artist
Look up "a name" :)
Reply
:iconfluf-studios:
=fluf-studios Mar 5, 2013  Student General Artist
I see! Thanks. :D
Reply
:iconxzotech:
Hi. Can someone tell me what the correct HTML code is to have the text field within a custom box limited to a predefined width so that a set of characters that exceed that width are automatically dropped down to the next line?

For example, let's say I have an image that is 300px wide and I add text underneath it. How can I make sure that that text does not exceed the 300px wide but instead drops down to the next line as needed?
Reply
:icongillianivy:
`GillianIvy Feb 20, 2013  Hobbyist General Artist
This would require CSS styling to your HTML

.example{
width:300px;
overflow:auto;
}

The HTML would look like

<div class="example"> text content </div>

"example" can be changed to whatever you like, but make sure it is typed exactly the same in the CSS.
Reply
:iconxzotech:

Thanks for the info! I'll give it a try. :nod:
Reply
:icongillianivy:
`GillianIvy Mar 6, 2013  Hobbyist General Artist
Good luck.
Reply
Add a Comment: