Hi,
Team, as I am trying that field, has to visible after 3 seconds for that I am tried in this way but it's not working can u tell me the procedure how to do that?
Code:
#UsrCRIF1PageSTRINGf6e4c1f8-6861-4761-a2a6-88c0822f7b32Label{
color: black;
font-family: Helvetica;
visibility: hidden;
animation-duration: 0.0001s;
}
Hoping for positive reply
Regards
manikanta
Like
This is how to add a custom CSS
https://community.bpmonline.com/questions/how-add-custom-style-control-page-based-condition
This is the needed CSS
#SupportCasePageSymptomsContainer{
background-color:rebeccapurple;
animation: cssAnimation 0s 2s forwards;
visibility: hidden;
}
@keyframes cssAnimation {
to { visibility: visible; }
}
https://stackoverflow.com/questions/46798683/css-hide-element-after-5-seconds-show-it