Thanks for trying that and reporting backâthatâs very helpful.
Since changing {{edit:Extra Q18}} â {{Extra Q18}} didnât fix it, something else is blocking the display. Letâs systematically check what Anki is actually doing with that card.
1. Use Ankiâs builtâin âCheck Cardâ to see the real output
On one of the broken cards:
- Open Browse.
- Select a problematic â18â card.
- In the top menu, click Cards â Check Card⌠(in some versions: rightâclick the card â Check database / Check card; or from the Cards window, look for a Check button).
If you see a âCheck Cardâ / âCard Infoâ style window:
- Look for any errors or warnings about:
- Missing fields
- Invalid HTML
- Problems evaluating the template
- If it shows a rendered preview, check whether the front is already blank there or only in review mode.
If you donât find that option, we can do the same check via the normal Preview in the Browser:
- With the card selected, press Space or click the Preview (eye) icon.
- Confirm:
- Is the front in Preview also blank?
- Or is the front visible in Preview but blank only in regular review?
Please let me know which of these is true:
- A) Blank in Preview and in Review, or
- B) Shows correctly in Preview, blank only in Review.
That tells us whether the problem is in the template or in reviewâtime behavior (e.g., a display/addâon issue).
2. Confirm that the template is actually using the fields you showed
From your last screenshot, the fields look like this (top to bottom, roughly):
Extra Q18 â question text
Extra A18 â answer text
Extra 18 â explanation
Entire Sketch â image
Please open Cards⌠again on that same card and verify that your Front Template is exactly:
<div class=textstyling>
{{#Extra Q18}}<font color="#DC143C">§</font><br>
<center>{{Extra Q18}}</center>
{{/Extra Q18}}
</div>
Key things to check (tiny mistakes here can blank the whole front):
- The opening and closing conditional tags are identical:
{{#Extra Q18}} and {{/Extra Q18}}
- Not
{{/Extra Q 18}}
- Not
{{/ExtraQ18}}
- No extra spaces or different capitalization.
- There are no stray characters above
<div class=textstyling> (like an unclosed {{ or HTML tag).
- On the Back Template, at least temporarily, change the relevant lines to the simplest possible version:
<div class=textstyling>
{{Extra Q18}}<br><br>
{{Extra A18}}<br><br>
{{Extra 18}}<br><br>
{{Entire Sketch}}
</div>
(Just for testingâignore Amboss and AnkiHub sections for a moment.)
Then click Preview again and see if any text appears.
3. Quickly rule out styling / CSS hiding the text
Itâs possible the text is technically there but hidden by styling.
In the Cards⌠â Styling tab for this note type:
- Scroll through and look for any rules that might affect
.textstyling or div globally, such as:
color: #ffffff; on a white background
display: none;
visibility: hidden;
font-size: 0px;
- Temporarily add this at the very bottom of the Styling tab:
.textstyling {
color: black !important;
font-size: 22px !important;
}
Then hit Preview again.
If the text suddenly appears, we know it was just CSS hiding it.
4. If none of the above work: reset a single note type from AnkiHub
To avoid breaking everything, letâs try resetting just one of the Pepper note types through AnkiHub:
- In Anki â AnkiHub â Manage Decks.
- Select the Sketchy Pharm Pepper (or Micro Pepper) deck.
- In the note type list, find the â18â note type thatâs giving you trouble.
- Look for an option like:
- Reset this note typeâs card templates, or
- Use templates from AnkiHub / Update templates for that note type.
- Apply it, then:
- Sync with AnkiHub (Anki â AnkiHub).
- Restart Anki.
- Test one of the â18â cards again.
If you donât see a perânoteâtype reset option, let me know exactly what options you do see under Manage Deck and Iâll guide you stepâbyâstep from there.
To move forward, could you please reply with:
- Whether the card is blank in Preview as well as Review, or only in Review.
- A screenshot of:
- The Front Template (after you simplified it as above), and
- The Styling tab (bottom portion is enough).
With that, we can pinpoint whether this is a template/field issue, CSS hiding, or something that needs an AnkiHub template reset.