|
Home > Archive > WebSphere HATS > June 2005 > Cursor Question
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Does anyone know how to set the cursor in a HATS project to a block? Thanks.
| |
| Greg Peters 2005-06-05, 5:45 pm |
| Frank,
If you mean setting the cursor for the web page.
I think you could try the following
<body class=blockcursor>
.....
blockcursor {
cursor: url("../images/block.ico");
}
Hope this helps,
Greg Peters
Beaver Creek Web Solutions, Inc
http://www.piner.com
"Frank" <frank@dms-systems.com> wrote in message
news:crms9s$5flc$1@news.boulder.ibm.com...
> Does anyone know how to set the cursor in a HATS project to a block?
> Thanks.
>
>
| |
| David Lynn 2005-06-05, 5:45 pm |
| I'm not sure what you're aiming for here, but in my case, I simply wanted to
make the cursor more visible. Take a look at your default template to see
what stylesheets are being used. With the default stlyesheets, the cursor
sits right against the edge of the input text box making it hard to see. I
modified the stylesheet that I am using to map colors to include the
following for the input class:
INPUT {
........various settings.......
padding-left: 3px;
padding-right: 3px;
........various settings.......
}
The left and right padding keeps the cursor away from the edges of the text
box and makes it more visible.
"Greg Peters" <greg.peters@incentric.com> wrote in message
news:cshjtf$6nfi$1@news.boulder.ibm.com...
> Frank,
>
> If you mean setting the cursor for the web page.
> I think you could try the following
> <body class=blockcursor>
> ....
>
> blockcursor {
>
> cursor: url("../images/block.ico");
>
> }
>
>
> Hope this helps,
>
> Greg Peters
> Beaver Creek Web Solutions, Inc
> http://www.piner.com
>
>
> "Frank" <frank@dms-systems.com> wrote in message
> news:crms9s$5flc$1@news.boulder.ibm.com...
>
>
|
|
|
|
|