Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Tool_Tip
Creator III
Creator III

CSS ERROR

Dear ALL

We are not getting below error while writing below css code in custom css window of "Advanced KPI" object 

Tool_Tip_0-1762920233369.png

Also we tried below code 

& .qv-inner-object {
  border: 3px solid #fff;
  border-radius: 20px;
} 

& .qv-object-advanced-kpi {
  border-radius: 25px !important;
}

& article {
  border: 0px !important;
}
We want to hide border of KPI object.

NOTE: Please suggest to use Multi KPI object as it will be removed soon 

 

 

 

Labels (1)
12 Replies
Nagaraju_KCS
Specialist II
Specialist II

Try this

.qv-object .qv-inner-object
{
background-color: transparent !important;
}

Tool_Tip
Creator III
Creator III
Author

Dear nagarju

It is working perfect for me now.
But, it is getting applied for all the objects so I try to mentioned specific object as below so no luck

='div[tid="fqBFf"].qv-object .qv-inner-object
{
background-color: transparent !important;
}

article {
border: 0px !important;
}'

Something wrong here?

Thank you.

Nagaraju_KCS
Specialist II
Specialist II

Check this 

=div[tid='fqBFf'] .qv-object .qv-inner-object
{
background-color: transparent !important;
}

article {
border: 0px !important;
}