How to show two images when caller is vip on form as well as on list

dheeru_1994
Tera Contributor

Hello All 
i have requirement  to show two images on incident table  when the caller is vip   i am trying to do by style on incident table  on list field images are over lapping  and  inside the form images are not shown  my condition is that both images should visible on list as well as on form 
in community i tried solution but solution are working only on form not on list 
your support highly appreciated 

dheeru_1994_0-1713417159097.png

this i am trying 
and i am getting on list below is the screen shot 

dheeru_1994_1-1713417390462.png

these type overlapping 
i am eagerly trying for solution but no luck 

11 REPLIES 11

Community Alums
Not applicable

Hi @dheeru_1994 ,

I tried your problem in my PDI and it works for me 

SarthakKashya2_0-1713421375320.png

You can right click on the field and click configure styles 

SarthakKashya2_1-1713421417193.png

Create new style record and add below code 

SarthakKashya2_2-1713421455347.png

 

Here's the code for CSS

background-image: url('10on.png');
            background-repeat: no-repeat;
            background-position: 98% 5px;
            padding-right: 30px;

 

 

Note: The background image you chose it must be present in System UI < Images table. You can get the name from there 

SarthakKashya2_3-1713421518309.png

 

Please mark my answer correct and helpful if this works for you

 

Thanks and Regards 

Sarthak

 

i want two images  to show  there not one 
sir 

Community Alums
Not applicable

Hi @dheeru_1994 ,

Is this what you need ? 

SarthakKashya2_0-1713422265438.png

 

You can edit CSS like that 

background-image: url('10on.png'), url('2on.png');
            background-repeat: no-repeat;
            background-position: 98% 5px;
            padding-right: 30px;
  background-position: right bottom, left top;
  background-repeat: no-repeat, no-repeat;
  padding: 15px;

 

Please mark my answer correct and helpful if this works for you

 

Thanks and Regards 

Sarthak

yes i want this type  image should come one by one without  space