Reply To: Picture and description always on top

Home Forums Support Picture and description always on top Reply To: Picture and description always on top

Home Forums Support Picture and description always on top Reply To: Picture and description always on top

#168606
Tom
Lead Developer
Lead Developer

Hi there,

I’m using GP’s built in grid system.

You can use push and pull classes like this:

<div class="grid-container grid-parent">
	<div class="grid-30 push-70">
		Image HTML in here (30% wide), pushed 70% to the right
	</div>
	<div class="grid-70 pull-30">
		Content in here (70% wide), pulled 30% to the left
	</div>
	
	<div class="grid-30">
		Image HTML in here (30% wide)
	</div>
	<div class="grid-70">
		Content in here (70% wide)
	</div>
	
	<div class="grid-30 push-70">
		Image HTML in here (30% wide), pushed 70% to the right
	</div>
	<div class="grid-70 pull-30">
		Content in here (70% wide), pulled 30% to the left
	</div>
</div>