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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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)
13 Replies
Nagaraju_KCS
Specialist III
Specialist III

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 III
Specialist III

Check this 

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

article {
border: 0px !important;
}

Tool_Tip
Creator III
Creator III
Author

No Dear 

Not working