Created
May 12, 2021 21:58
-
-
Save jonwolfe/31b2159604026325c2ba6d83c2f47fc0 to your computer and use it in GitHub Desktop.
Right-sizing smaller images in Vocal Video articles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Max 300px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-300 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> | |
Max 400px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-400 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> | |
Max 500px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-500 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> | |
Max 600px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-600 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> | |
Max 700px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-700 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> | |
Max 800px wide: | |
<figure class="kg-card kg-image-card"> | |
<img class="kg-image max-width-800 centered" alt="" src=""> | |
<figcaption>Optional caption here</figcaption> | |
</figure> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment