Page 1 of 1

button visited

Posted: Mon Oct 24, 2022 8:29 pm
by SergeFog
How to change the color of a button that has been visited?

Re: button visited

Posted: Tue Oct 25, 2022 3:14 am
by wwonderfull
SergeFog wrote: Mon Oct 24, 2022 8:29 pm How to change the color of a button that has been visited?
I don't have any demo of your project so can not be specific but I am sure you need to use some custom code for the css for example:

Code: Select all

.visited {
  background-image:none;
  background-color: blue;
  font-size: 35px;
  color: white;
}