View Full Version : Cursor Attributes


*The*Great*One*
12-13-2000, 03:37 AM
Does anybody know a code that will change the cursor attributes over every link? :)

Fluffy2000
12-13-2000, 02:10 PM
http://www.lissaexplains.com/css.shtml

*The*Great*One*
12-14-2000, 03:23 AM
I wanna know if there's a code to change the cursor attributes for EVERY link. Does anybody know a code for that? :)

YouThenMe
12-14-2000, 07:07 AM
It's right there on the page Fluffy gave you, lower on the page :)

<style type="text/css">
<!--
A:link { text-decoration: none; color:"#YourColor" }
A:hover { text-decoration: none; cursor:"crosshair" }
-->

That goes in your <head> portion.

Claw Viper
12-14-2000, 04:14 PM
For it to show up on individual links, you use the code provided, but like this:


<a href="blahblah.html" style="a:hover {yadda yadda}


Someone correct me if I'm wrong..

YouThenMe
12-15-2000, 08:06 AM
Yeah, but if you want to do it for all the links on your page, you'll put the code I last posted ^^^ up there, in your <head> portion. That way, you don't have to add it to each separate <a href> link :)

*The*Great*One*
12-15-2000, 09:20 PM
I tried to put in the code but it won't work.

bookyalex
02-25-2004, 01:22 AM
If you make a master style sheet and link to that sheet on every page, then when you want to change the cursor attribute, you may do it on the master sheet and all the pages will change. My explanations may not make a whole lot of sense, but here's the codes for making a master sheet.

Create a new document labeled WHATEVERYOUWANT.css. You must have the .css - otherwise, it won't work.
On this document, put all the CSS in normally, you don't need to bother with the <style type="text/css">

On the page(s) that you want the attributes to be displayed, but in this code:

<link rel="stylesheet" href="THE NAME OF YOU STYLE SHEET.css" type="text/css">

Does that help? :P

lefty
02-25-2004, 01:37 AM
Seeing this message was posted 4 years ago, I'm fairly certain they no longer need help.