Can I modify the tooltip display on an <input type="xx"> statement?

Joined
Aug 16, 2022
Messages
52
Reaction score
2
Hi everybody,

I have several <input type=> buttons on my forms.
HTML:
<input type="submit" class="submitbtn1" title="Submit your Registration" value="SUBMIT">
so that the buttons themselves look unique.
CSS:
.form-container .submitbtn1 {
    border-style: groove;
    border-width: 0.125rem;
    border-radius: 1.25rem;
    border-color: #000000;
    background-image: -webkit-linear-gradient(top left, #004001 ,#80FF81 );
    background-image: linear-gradient(to bottom right, #80FF81 , #004001 );
    font-family:  "Comic Sans MS", cursive, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
}

.form-container .submitbtn1:hover {
    border-style: groove;
    border-width: 0.125rem;
    border-radius: 1.25rem;
    border-color: #000000;
    background-image: -webkit-linear-gradient(top left, #80FF00 ,#004001 );
    background-image: linear-gradient(to bottom right, #004001 , #80FF81 );
    font-family:  "Comic Sans MS", cursive, sans-serif;
    font-size: 1rem;
    color: #FFFF00;
}

The issue I have is when I hover any one of the buttons, I see a pretty plain-appearance popup message defined by the title attribute.

How can I modify how that title attribute displays? Say with background-color="blue";
 
Joined
Jul 4, 2023
Messages
366
Reaction score
41
AFAIK at this time it is not possible to influence the appearance of the title attribute via css. The appearance comes from a web browser.
 
Joined
Aug 16, 2022
Messages
52
Reaction score
2
Thanks VBService.
You're right on that. I've been researching that issue for about two weeks now, without any success.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,062
Latest member
OrderKetozenseACV

Latest Threads

Top