Documentation:UBC Content Management System/Site Migration/Affiliate Logos

From UBC Wiki

In the old CLF, there wasn't a specified area to place affiliate logos. Now, in the new CLF, the footer has been approved by UBC Communications & Marketing as the correct area for this.

With HTML scaffolding, it is responsive in design and easy to just paste your web & image links in the below:

<div class="row-fluid expand"> 
 
	<div class="span3" style="text-align: center;"> 
		<a href="/"> 
			<img src="/example1.jpg">
		</a> 
	</div> 
	 
	<div class="span3" style="text-align: center;"> 
		<a href="/"> 
			<img src="/example2.jpg">
		</a> 
	</div> 

	<div class="span3" style="text-align: center;"> 
		<a href="/"> 
			<img src="/example3.jpg">
		</a> 
	</div> 

	<div class="span3" style="text-align: center;"> 
		<a href="/"> 
			<img src="/example4.jpg">
		</a> 
	</div> 

</div>


For more information on responsive design scaffolding, please see here: Twitter Bootstrap HTML scaffolding