Copy link to clipboard
Copied
Can anyone tell me how to format the horrible yellow boxes next to the sequence review button? I'm having to edit the CPLibraryAll.css file for each quiz (its class is .sequenceReviewArea), but that's a pain. Where that style is editable within Captivate itself? - I can't find it in the Object Style Manager. Note also the tiny unreadable serif font and the fact that the review box is appearing behind the question text.
Copy link to clipboard
Copied
To keep from editing the CPLibraryAll.css after each publish, create your own CSS file and include it in the HTML5 template. Ensure you put !important after the style to ensure you override any CP styles.
The template index file is here:
C:\Program Files\Adobe\Adobe Captivate 9x 64\HTML\index.html
You can put a CSS file here:
C:\Program Files\Adobe\Adobe Captivate 9x 64\HTML\assets\css\yourCSSFileName.css (if the folder is not there, create it)
Add the link to the head of the index.html file:
<link rel="stylesheet" type="text/css" href="assets/css/yourCSSFileName.css">
You'll never have to edit the CPLibraryAll.css again.
Copy link to clipboard
Copied
Thanks, that's really useful information. I didn't think of amending the template index file - much less work, I'll give it a go.
I'd still be interested to hear if anyone knows where that style can be altered in Captivate itself, though... Anyone know?
Copy link to clipboard
Copied
I don't think you can since it's part of a question and there is no master slide for it.
Copy link to clipboard
Copied
I can confirm that there is no way to edit that style within Captivate. It is one of the reasons why I mostly create a custom FIB slide (and short answer and hotspot) instead of using the default questions.
Copy link to clipboard
Copied
Ok, thank you both for your prompt answers - I'll give both approaches a go.