how to move left block to bottom

fulltilt

Joined: 2010-07-04
Posts: 5
Posted: Sun, 2010-07-04 12:34

Gallery-Version = 2.3.1 Kern 1.3.0.1
Carbon Template

how can i move the left box with title to the bottom (or remove), i would like to display all categories without the left box under breadcrumbs ...

Regards

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Sun, 2010-07-04 16:45

Edit album.tpl remove or move:

	    <td width="30%">
	      <div class="gsContentDetail">
		<div class="gbBlock">
		  {if !empty($theme.item.title)}
		  <h2> {$theme.item.title|markup} </h2>
		  {/if}
		  {if !empty($theme.item.description)}
		  <p class="giDescription">
		    {$theme.item.description|markup}
		  </p>
		  {/if}
		</div>
		<div class="gbBlock">
		  {g->block type="core.ItemInfo"
			    item=$theme.item
			    showDate=true
			    showSize=true
			    showOwner=$theme.params.showAlbumOwner
			    class="giInfo"}
		</div>
		<div class="gbBlock">
		  {* Show the album blocks chosen for this theme *}
		  {foreach from=$theme.params.albumUpperBlocks item=block}
		    {g->block type=$block.0 params=$block.1}
		  {/foreach}
		</div>
	      </div>
	    </td>

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
fulltilt

Joined: 2010-07-04
Posts: 5
Posted: Mon, 2010-07-05 10:26

thank you :-)