Images got bigger

IDK what happend, but the many picture in First Aid and Sketchy sections got way big. My monitor is 2k and I can’t view the whole image.

Thinking

Search
Found 0 results for ‘tags:official images got bigger First Aid Sketchy zoom AnkiHub category::person_raising_hand: Support order:latest max_posts:20 status:open’

This usually isn’t a deck issue but a display / zoom setting issue in Anki.

Here are the main things to check:

  1. Check Anki’s zoom level (Deck / Reviewer):

    • In the review window, press:
      • Ctrl + 0 (Windows/Linux) or Cmd + 0 (Mac) → reset zoom
      • Ctrl + - / Ctrl + + (or Cmd on Mac) to see if image size changes.
    • Also check:
      View → Zoom in the top menu and reset it there.
  2. Check Anki’s “Preferences → Review” settings:

    • Go to Tools → Preferences → Review.
    • See if “Zoom” or “Legacy browser” options are changed from what you usually use.
    • Try toggling “Legacy browser (for add-on compatibility)” on/off and restart Anki to see if it fixes scaling.
  3. Check the card template styling (CSS):

    • Open one of the affected cards → Cards…
    • In the Styling section, look for something like:
      img {
        max-width: none;
        width: 100%;
      }
      
      or any unusually large max-width, zoom, or transform: scale(...).
    • If you recently installed/updated another add‑on or changed the note type, it might have modified the CSS to force large images.
    • If you’re not sure what you’re seeing, you can copy the entire Styling section and paste it here so we can look at it with you.
  4. Check AnkiHub / deck updates:

    • Did this start right after an AnkiHub sync or deck update?
    • If yes, let us know:
      • Which AnkiHub deck (First Aid, Sketchy, etc.)
      • Your Anki version and OS
    • It’s possible a style change was pushed; if so, we can help you adjust it or revert locally.
  5. Quick temporary workaround (CSS):
    If you want to force images to fit your screen, you can add this to the Styling area of the card type:

    img {
      max-width: 100%;
      height: auto;
    }
    

    This should make images scale down to fit the card width while keeping proportions.


Could you try steps 1–2 first and tell us:

  • Whether resetting zoom fixes it, and
  • If the problem happens on all cards or only specific note types (e.g., only Sketchy or only First Aid cards)?

With that info we can give you a precise fix (and, if needed, a small CSS snippet tailored to your deck).

Solved: reset local changes and worked