Versions Compared

Key

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

...

  • Logo displayed next to name, title, and company 

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


expand
Code Block
languagehtml
titleName, 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 WordPress adds.
Don't skip the divider element! If you forget it, the image won't appear.
Code Block
languagehtml
titleCode
collapsetrue


<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>

...