Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
HartbargerL
Contributor II
Contributor II

custom theme - sheet title image & default button corner radius

Hello!! 

Below is my css for my custom theme and how I reference it in my json file. For some reason the sheet title image is not rendering. Sometimes it randomly will but then I'll make a small change and it will not render. Any ideas on what is going on?

.sheet-title-text {
  background-image: url("my url here") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  color: white;
}
json: (I put this portion of the script after my inherit statement and variable creations)
"customStyles": [
      {
        "cssRef":   "qliktheme.css",
        "classRef": "custom-theme-style"
      }
    ],


Also... is it possible to customize the button object in css or json? I would like to set the default to be rounded corners/ 

 

Labels (2)
1 Solution

Accepted Solutions
HartbargerL
Contributor II
Contributor II
Author

I got it to work by using this in my css

.qv-inner-object{
  border-radius: 0.50em;
  }

View solution in original post

4 Replies
JandreKillianRIC
Partner Ambassador
Partner Ambassador

Hi @HartbargerL 

Also cant seem to get this with CSS, But on the styling tab you can do it. 

 

JandreKillianRIC_0-1737553457480.png

 

Seems like is must be something like this
.qv-object-action-button

 

Regards - Jandre

Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn

JandreKillianRIC
Partner Ambassador
Partner Ambassador

Hi @HartbargerL 


The .qv-object-action-button works but its like the blue part is different... very weird.

JandreKillianRIC_0-1737554818960.png

 

Here is my CSS


.qv-object-kpi, .qv-object-barchart, .qv-object-scatterplot, .qv-object-action-button {
border-radius: 30px;
background: #fafafa;
box-shadow: 10px 10px 30px #bdbdbd,
-10px -10px 30px #ffffff;
}

 

Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn

HartbargerL
Contributor II
Contributor II
Author

I got it to work by using this in my css

.qv-inner-object{
  border-radius: 0.50em;
  }
JandreKillianRIC
Partner Ambassador
Partner Ambassador

Hi @HartbargerL 

Thanks for letting me know! 

Regards Jandre

Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn