Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • link to component mockup in Figma

...

Design + Photos

Card photo (required)

  • Circle crop headshot
    • Square photo with face centered
    • 500x500px or 1000x1000px
  • Full-width photo
    • Standard photo size - 2400x1600px
    • Face should be in top 1/3 of image so it doesn't get covered by text at the bottom
    • We can add vertical images to make the cards taller, if desired. But all photos for cards in the same row/block should have the same dimensions.

...

  • Logo displayed next to name, title, and company 

  • Logo specs: 512px wide, height will vary
  • Layout created for T2L4

Image Modified


Code Block
languagehtml
titleDev Name, title, logo - dev note and code
collapsetrue
Where it says <img />, just use the Add Media button and add whatever photo you like. 
You do not need to edit the default classes wordpressWordPress adds.
Don't skip the divider element! If you forget it, the image won't appear.

<div class="name-title-company">
   	<div class="text-wrapper">
		<p>
			<span class="name">Name</span>
   			Title/Company
   			Location
		</p>
	</div>
   	<div class="divider"></div>
   	<div class="image-wrapper">
		<img />
	</div>
</div>


Image

...

Image Removed

...

beside text

  • Image can be on right or left side
  • Text can be styled as a quote or not
  • Text can include multiple paragraphs next to a larger image

Image Added

Code Block
languagehtml
titleImage + Text - dev note and code
collapsetrue
The "image-right" class can be removed if you want the image on the left instead.
Where it says <img />, just use the Add Media button and add whatever photo you like. You do not need to edit the default classes wordpress adds.
Make sure to include <p> tags around any text. 
Add the modal-quote class if you want quote styling like in the photo above: <p 

...

class="modal-quote"> 

...

Code Block
languagehtml
titleImage + Text
collapsetrue


<div class="modal-image-text image-right">
	<div class="image-wrapper">
		<img />
	</div>
	<div class="text-wrapper">
		<p>Text Here.</p>
		<p>Second paragraph.</p>
	</div>
</div>

...