The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Cursor

4 posters

Go down

In progress Cursor

Post by skidsolo Tue Mar 05 2013, 01:40

A few of my older members are having difficulty in seeing the faint cursor in the type text box. Is there any way it can be made more visible, like bolding please?

Thanks,

Alan.
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by Sir Chivas™ Tue Mar 05 2013, 01:45

Hi,

Can you please provide a screenshot and forum URL? Thank you.
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

In progress Re: Cursor

Post by skidsolo Tue Mar 05 2013, 16:43

Thanks for the reply.

My forum address is:

http://skidsplace.forumotion.com/

Here is the screen shot:

Cursor Captur14
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by Cassius Dio Tue Mar 05 2013, 16:50

It is happens only to old members? Ask them to clear his browser's cache, cookies:
https://help.forumotion.com/t22597-how-to-clear-the-cache-in-firefox-internet-explore-chrome
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

In progress Re: Cursor

Post by Sir Chivas™ Tue Mar 05 2013, 17:24

Oh, you want the hover over the quick reply to stand out more?

Code:
.inputbox:hover {
border: 1px solid #COLOR;
}

Change the hex color to whatever you wish.
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

In progress Re: Cursor

Post by SLGray Tue Mar 05 2013, 19:40

Are you talking about the the vertical flashing/blinking line that appears while you are typing? The line shows where you are typing in the message.


Cursor Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Cursor

Post by skidsolo Tue Mar 05 2013, 19:44

Yes, that's the one SLGray.

Is it possible to make it thicker or more visible please?
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by skidsolo Wed Mar 06 2013, 00:28

To CJ11.

Sorry, you have lost me here:

"Oh, you want the hover over the quick reply to stand out more?

Code: ----------Select content.inputbox:hover {
border: 1px solid #COLOR;

Change the hex color to whatever you wish."

Where and how do I do that?

Thanks.
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by Sir Chivas™ Wed Mar 06 2013, 00:52

skidsolo wrote:Yes, that's the one SLGray.

Is it possible to make it thicker or more visible please?

skidsolo wrote:To CJ11.

Sorry, you have lost me here:

"Oh, you want the hover over the quick reply to stand out more?

Code: ----------Select content.inputbox:hover {
border: 1px solid #COLOR;

Change the hex color to whatever you wish."

Where and how do I do that?

Thanks.

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead! Since this is your second reminder, you'll be receiving a warning next time.


Code:
.inputbox:hover {
border: 2px solid #74E868;
}
Add it inside your CSS: ACP >> Display >> Color >> CSS (TAB)
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

In progress Re: Cursor

Post by skidsolo Thu Mar 07 2013, 00:21

Thankyou for your reply.

Is this where you refer to, regarding the colour change?

If so I changed it from a brownish colour to blue as you can see but it appears to make no difference.

What I really need is a way to make the vertical flashing/blinking line that appears while you are typing into 'Bold'. ie a wider/thicker line.
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by skidsolo Sat Mar 09 2013, 01:26

Sorry.... I forgot to include a screenshot!! Embarassed

Cursor New12

Is that where I change the colour. If so, I did and it didn't!

If the blinking cursor cannot be made bold, is it possible to change the background colou in the type box please?




avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by Sir Chivas™ Sat Mar 09 2013, 04:47

Try inserting this into your CSS: ACP >> Display >> Color >> CSS (TAB)
Code:
.inputbox:hover {
border: 3px solid #4a330c;
}


If that doesn't work, here change the background color of the text area.
(ACP >> Display >> Color >> CSS (TAB))
Code:
.inputbox {
background-color: #000000;
border: 1px solid ##1675bc;
color: #000000;
cursor: text;
padding: 2px;
}
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

In progress Re: Cursor

Post by SLGray Sat Mar 09 2013, 05:15

CJ11 it is not the cursor that is the issue, it is the vertical line you see while typing.


Cursor Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Cursor

Post by Sir Chivas™ Sat Mar 09 2013, 05:19

Oh, then I guess the only thing would be to change the color of the background. Try this to change the background:

Code:
.inputbox {
background-color: #fff;
border: 1px solid ##1675bc;
color: #000000;
cursor: text;
padding: 2px;
}


Thank you, Slg Wink
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

In progress Re: Cursor

Post by skidsolo Sat Mar 09 2013, 20:47

Yippeeeee!!

Thanks muchly CJ11. Got the background colour cheanged to white and the cursor is now bold and larger!!

Top Man!!! :wouhou:
avatar
skidsolo
Forumember

Posts : 269
Reputation : 3
Language : English

Back to top Go down

In progress Re: Cursor

Post by SLGray Sat Mar 09 2013, 20:49

So this is solved now?


Cursor Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum