Whilst I’m really enjoying playing with Canvas, one annoyance is that I have inline titles turned on which makes the title appear above the card and inside the card. Is there a way to disable this?
Things I have tried
No option apparent in the canvas add on
No description of this issue in the helpfile
What I’m trying to do
Have inline title turned on for standard page rendering
Have inline title turned off for rendering within canvas
You create a .css file (it can be named anything), paste in that “CSS snippet” code above, save the file, and then enable it in Settings > Appearance. More details here:
You can then use CSS to target specific Canvases. e.g.
/* be sure to use the exact path and name of your canvas */
[data-canvas-path="assets/canvas/test canvas.canvas"] .canvas-node-container .inline-title {
display: none;
}