Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

please need help with HTML table/loop and .tpl file!

Status
Not open for further replies.

zoldos

Technical User
Nov 5, 2008
90
US
The following code produces a page which displays photo albums. But they are displayed one on top of the other. I'm trying to figure out how to make them be displayed TWO per row, next to each other instead. The below code is the PHP source, and after that the template file. It contains a lot of HTML which is why I posted it here and I'm sure the solution is editing the template file.

Any help would be greatly appreciated as this seems beyond my current understanding.

---browse_albums.php---

Code:
<?php

/* $Id: browse_albums.php 16 2009-01-13 04:01:31Z john $ */

$page = "browse_albums";
include "header.php";


// DISPLAY ERROR PAGE IF USER IS NOT LOGGED IN AND ADMIN SETTING REQUIRES REGISTRATION
if( !$user->user_exists && !$setting['setting_permission_album'] )
{
  $page = "error";
  $smarty->assign('error_header', 639);
  $smarty->assign('error_message', 656);
  $smarty->assign('error_submit', 641);
  include "footer.php";
}


// PARSE GET/POST
if(isset($_POST['p'])) { $p = $_POST['p']; } elseif(isset($_GET['p'])) { $p = $_GET['p']; } else { $p = 1; }
if(isset($_POST['s'])) { $s = $_POST['s']; } elseif(isset($_GET['s'])) { $s = $_GET['s']; } else { $s = "album_datecreated DESC"; }
if(isset($_POST['v'])) { $v = $_POST['v']; } elseif(isset($_GET['v'])) { $v = $_GET['v']; } else { $v = 0; }

// ENSURE SORT/VIEW ARE VALID
if($s != "album_datecreated DESC" && $s != "album_dateupdated DESC") { $s = "album_dateupdated DESC"; }
if($v != "0" && $v != "1") { $v = 0; }


// SET WHERE CLAUSE
$where = "CASE
	    WHEN se_albums.album_user_id='{$user->user_info[user_id]}'
	      THEN TRUE
	    WHEN ((se_albums.album_privacy & @SE_PRIVACY_REGISTERED) AND '{$user->user_exists}'<>0)
	      THEN TRUE
	    WHEN ((se_albums.album_privacy & @SE_PRIVACY_ANONYMOUS) AND '{$user->user_exists}'=0)
	      THEN TRUE
	    WHEN ((se_albums.album_privacy & @SE_PRIVACY_FRIEND) AND (SELECT TRUE FROM se_friends WHERE friend_user_id1=se_albums.album_user_id AND friend_user_id2='{$user->user_info[user_id]}' AND friend_status='1' LIMIT 1))
	      THEN TRUE
	    WHEN ((se_albums.album_privacy & @SE_PRIVACY_SUBNET) AND '{$user->user_exists}'<>0 AND (SELECT TRUE FROM se_users WHERE user_id=se_albums.album_user_id AND user_subnet_id='{$user->user_info[user_subnet_id]}' LIMIT 1))
	      THEN TRUE
	    WHEN ((se_albums.album_privacy & @SE_PRIVACY_FRIEND2) AND (SELECT TRUE FROM se_friends AS friends_primary LEFT JOIN se_users ON friends_primary.friend_user_id1=se_users.user_id LEFT JOIN se_friends AS friends_secondary ON friends_primary.friend_user_id2=friends_secondary.friend_user_id1 WHERE friends_primary.friend_user_id1=se_albums.album_user_id AND friends_secondary.friend_user_id2='{$user->user_info[user_id]}' AND se_users.user_subnet_id='{$user->user_info[user_subnet_id]}' LIMIT 1))
	      THEN TRUE
	    ELSE FALSE
	END";


// ONLY MY FRIENDS' ALBUMS
if($v == "1" && $user->user_exists) {

  // SET WHERE CLAUSE
  $where .= " AND (SELECT TRUE FROM se_friends WHERE friend_user_id1='{$user->user_info['user_id']}' AND friend_user_id2=se_albums.album_user_id AND friend_status=1)";

}



// CREATE ALBUM OBJECT
$album = new se_album();

// GET TOTAL ALBUMS
$total_albums = $album->album_total($where);

// MAKE ENTRY PAGES
$albums_per_page = 20;
$page_vars = make_page($total_albums, $albums_per_page, $p);

// GET ALBUM ARRAY
$album_array = $album->album_list($page_vars[0], $albums_per_page, $s, $where);


// ASSIGN SMARTY VARIABLES AND DISPLAY ALBUMS PAGE
$smarty->assign('albums', $album_array);
$smarty->assign('total_albums', $total_albums);
$smarty->assign('p', $page_vars[1]);
$smarty->assign('maxpage', $page_vars[2]);
$smarty->assign('p_start', $page_vars[0]+1);
$smarty->assign('p_end', $page_vars[0]+count($album_array));
$smarty->assign('s', $s);
$smarty->assign('v', $v);
include "footer.php";
?>

and the template file:

---browse_albums.tpl---

Code:
{include file='header.tpl'}

{* $Id: browse_albums.tpl 2 2009-01-10 20:53:09Z john $ *}

<div class='page_header'>{lang_print id=1000127}</div>

<div style='padding: 7px 10px 7px 10px; background: #F2F2F2; border: 1px solid #BBBBBB; margin: 10px 0px 10px 0px; font-weight: bold;'>
  <table cellpadding='0' cellspacing='0'>
  <tr>
  <td>
    {lang_print id=1000128} 
  </td>
  <td>
    <select style='background-color:#CCCCCC' class='small' name='v' onchange="window.location.href='browse_albums.php?s={$s}&v='+this.options[this.selectedIndex].value;">
    <option style='background-color:#CCCCCC' value='0'{if $v == "0"} SELECTED{/if}>{lang_print id=1000129}</option>
    {if $user->user_exists}<option value='1'{if $v == "1"} SELECTED{/if}>{lang_print id=1000130}</option>{/if}
    </select>
  </td>
  <td style='padding-left: 20px;'>
    {lang_print id=1000131} 
  </td>
  <td>
    <select style='background-color:#CCCCCC' class='small' name='s' onchange="window.location.href='browse_albums.php?v={$v}&s='+this.options[this.selectedIndex].value;">
    <option style='background-color:#CCCCCC' value='album_dateupdated DESC'{if $s == "album_dateupdated DESC"} SELECTED{/if}>{lang_print id=1000132}</option>
    <option style='background-color:#CCCCCC' value='album_datecreated DESC'{if $s == "album_datecreated DESC"} SELECTED{/if}>{lang_print id=1000133}</option>
    </select>
  </td>
  </tr>
  </table>
</div>


{* DISPLAY PAGINATION MENU IF APPLICABLE *}
{if $maxpage > 1}
  <div style='text-align: center; padding-bottom: 10px;'>
  {if $p != 1}<a href='browse_albums.php?s={$s}&v={$v}&p={math equation='p-1' p=$p}'>« {lang_print id=182}</a>{else}« {lang_print id=182}{/if}
   |  
  {if $p_start == $p_end}
    <b>{lang_sprintf id=184 1=$p_start 2=$total_albums}</b>
  {else}
    <b>{lang_sprintf id=185 1=$p_start 2=$p_end 3=$total_albums}</b>
  {/if}
    | 
  {if $p != $maxpage}<a href='browse_albums.php?s={$s}&v={$v}&p={math equation='p+1' p=$p}'>{lang_print id=183} »</a>{else}{lang_print id=183} »{/if}
  </div>
{/if}



<div>

  {section name=album_loop loop=$albums}

    {* SET ALBUM COVER *}
    {if $albums[album_loop].album_cover_id == 0}
      {assign var='album_cover_src' value='./images/icons/folder_big.gif'}
    {else}
      {* IF IMAGE, GET THUMBNAIL *}
      {if $albums[album_loop].album_cover_ext == "jpeg" || $albums[album_loop].album_cover_ext == "jpg" || $albums[album_loop].album_cover_ext == "gif" || $albums[album_loop].album_cover_ext == "png" || $albums[album_loop].album_cover_ext == "bmp"}
        {assign var='album_cover_dir' value=$url->url_userdir($albums[album_loop].album_author->user_info.user_id)}
        {assign var='album_cover_src' value="`$album_cover_dir``$albums[album_loop].album_cover_id`_thumb.jpg"}
      {* SET THUMB PATH FOR AUDIO *}
      {elseif $albums[album_loop].album_cover_ext == "mp3" || $albums[album_loop].album_cover_ext == "mp4" || $albums[album_loop].album_cover_ext == "wav"}
        {assign var='album_cover_src' value='./images/icons/audio_big.gif'}
      {* SET THUMB PATH FOR VIDEO *}
      {elseif $albums[album_loop].album_cover_ext == "mpeg" || $albums[album_loop].album_cover_ext == "mpg" || $albums[album_loop].album_cover_ext == "mpa" || $albums[album_loop].album_cover_ext == "avi" || $albums[album_loop].album_cover_ext == "swf" || $albums[album_loop].album_cover_ext == "mov" || $albums[album_loop].album_cover_ext == "ram" || $albums[album_loop].album_cover_ext == "rm"}
        {assign var='album_cover_src' value='./images/icons/video_big.gif'}
      {* SET THUMB PATH FOR UNKNOWN *}
      {else}
        {assign var='album_cover_src' value='./images/icons/file_big.gif'}
      {/if}
    {/if}


    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='{$url->url_create('album', $albums[album_loop].album_author->user_info.user_username, $albums[album_loop].album_id)}'><img src='{$album_cover_src}' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='{$url->url_create('album', $albums[album_loop].album_author->user_info.user_username, $albums[album_loop].album_id)}'>{$albums[album_loop].album_title|truncate:30:"...":true}</a></div>
        <div class='album_browse_date'>
          {assign var='album_dateupdated' value=$datetime->time_since($albums[album_loop].album_dateupdated)}{capture assign="updated"}{lang_sprintf id=$album_dateupdated[0] 1=$album_dateupdated[1]}{/capture}
          {lang_sprintf id=1000172 1=$albums[album_loop].album_files} - {lang_sprintf id=1000124 1=$updated 2=$url->url_create("profile", $albums[album_loop].album_author->user_info.user_username) 3=$albums[album_loop].album_author->user_displayname}
        </div>
        <div style='margin-top: 10px;'>{$albums[album_loop].album_desc|truncate:75:"...":true}</div>
      </td>
      </tr>
      </table>
    </div>

    {cycle values=",<div style='clear: both; height: 10px;'></div>"}

  {/section}

</div>

{include file='footer.tpl'}
 
Sure, no problem:

Code:
<!DOCTYPE html 
	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns='[URL unfurl="true"]http://www.w3.org/1999/xhtml'>[/URL]
<head>
<title>Avulsion Net - We Want Your Soul</title>
<base href='[URL unfurl="true"]http://www.zoldixsava.net/'>[/URL]
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>
<meta name='Description' content="Avulsion Net - We Want Your Soul">
<meta name="keywords" content="">
<meta name="robots" content="FOLLOW,INDEX">

<link rel="stylesheet" href="./templates/styles_global.css" title="stylesheet" type="text/css">  
<link rel="stylesheet" href="./templates/styles.css" title="stylesheet" type="text/css">  
<link rel="stylesheet" href="./templates/dropdown.css" title="stylesheet" type="text/css">
<link rel="stylesheet" href="./templates/template.css" title="stylesheet" type="text/css">  
<!--[if IE 7]>
<LINK media=all href="./templates/ietemplate.css" type=text/css rel=stylesheet><![endif]-->

<script type="text/javascript" src="./include/js/mootools12.js"></script>
<script type="text/javascript" src="./include/js/mootools12-more.js"></script>
<script type="text/javascript" src="./include/js/autogrow.js"></script>
<script type="text/javascript" src="./include/js/smoothbox.js"></script>
<script type="text/javascript" src="./include/js/autosuggest.js"></script>
<script type="text/javascript" src="./include/js/sprintf.js"></script>
<script type="text/javascript" src="./include/js/dropdown.js"></script>

<script type="text/javascript" src="./include/js/class_base.js"></script>

<script type="text/javascript" src="./include/js/class_core.js"></script>
<script type="text/javascript" src="./include/js/class_language.js"></script>
<script type="text/javascript" src="./include/js/class_url.js"></script>
<script type="text/javascript" src="./include/js/class_comments.js"></script>
<script type="text/javascript" src="./include/js/class_tags.js"></script>
<script type="text/javascript" src="./include/js/class_user.js"></script>


<script type="text/javascript">
<!--
  var SocialEngine = new SocialEngineAPI.Base();
  
  // Core
  SocialEngine.Core = new SocialEngineAPI.Core();
  SocialEngine.Core.ImportSettings({"setting_url":false,"setting_username":true});
  SocialEngine.Core.ImportPlugins(["userpoints","forum","album","group","blog","plugin_controls"]);
  SocialEngine.RegisterModule(SocialEngine.Core);
  
  // URL
  SocialEngine.URL = new SocialEngineAPI.URL();
  SocialEngine.URL.ImportURLBase('[URL unfurl="true"]http://www.zoldixsava.net/');[/URL]
  SocialEngine.URL.ImportURLInfo({"blog":{"url_file":"blog","url_regular":"blog.php?user=$user","url_subdirectory":"$user\/blog\/"},"blog_entry":{"url_file":"blog_entry","url_regular":"blog.php?user=$user&blogentry_id=$id1","url_subdirectory":"$user\/blog\/$id1\/"},"blog_trackback":{"url_file":"blog_trackback","url_regular":"blog_ajax.php?task=trackback&user=$user&blogentry_id=$id1","url_subdirectory":"$user\/trackback\/$id1\/"},"albums":{"url_file":"albums","url_regular":"albums.php?user=$user","url_subdirectory":"$user\/albums\/"},"album":{"url_file":"album","url_regular":"album.php?user=$user&album_id=$id1","url_subdirectory":"$user\/albums\/$id1"},"album_file":{"url_file":"album_file","url_regular":"album_file.php?user=$user&album_id=$id1&media_id=$id2","url_subdirectory":"$user\/albums\/$id1\/$id2"},"group":{"url_file":"group","url_regular":"group.php?group_id=$id1","url_subdirectory":"group\/$id1\/"},"group_media":{"url_file":"group_media","url_regular":"group_album_file.php?group_id=$id1&groupmedia_id=$id2","url_subdirectory":"group\/$id1\/album\/$id2\/"},"group_discussion":{"url_file":"group_discussion","url_regular":"group_discussion_view.php?group_id=$id1&grouptopic_id=$id2","url_subdirectory":"group\/$id1\/discussion\/$id2\/"},"group_discussion_post":{"url_file":"group_discussion_post","url_regular":"group_discussion_view.php?group_id=$id1&grouptopic_id=$id2&grouppost_id=$id3","url_subdirectory":"group\/$id1\/discussion\/$id2\/$id3\/"},"profile":{"url_regular":"profile.php?user=$user","url_subdirectory":"$user\/"}});
  SocialEngine.RegisterModule(SocialEngine.URL);
  
  // Language
  SocialEngine.Language = new SocialEngineAPI.Language();
  SocialEngine.RegisterModule(SocialEngine.Language);
  
  // User - Viewer
  SocialEngine.Viewer = new SocialEngineAPI.User();
  SocialEngine.Viewer.ImportUserInfo({"user_exists":true,"user_id":1,"user_username":"zoldos","user_fname":"Vex","user_lname":"Malleus","user_subnet_id":0,"user_status":"I decided to<wbr>&shy; put the hom<wbr>&shy;e page back <wbr>&shy;to the way i<wbr>&shy;t was, it lo<wbr>&shy;oks better a<wbr>&shy;nd works...","user_photo":"0_4265.jpg"});
  SocialEngine.RegisterModule(SocialEngine.Viewer);
  
  // User - Owner
  SocialEngine.Owner = new SocialEngineAPI.User();
  SocialEngine.Owner.ImportUserInfo({"user_exists":false});
  SocialEngine.RegisterModule(SocialEngine.Owner);
  
  // Back
  SELanguage = SocialEngine.Language;
//-->
</script>



<script type="text/javascript">
<!--
  // ADD TIP FUNCTION
  window.addEvent('load', function()
  {
    var Tips1 = new Tips($$('.Tips1'));
  });
//-->
</script>
<!--[if lt IE 7]>
<script defer type="text/javascript" src="./include/js/pngfix.js"></script>
<![endif]-->

<link rel="stylesheet" href="./templates/forum/forum_styles.css" title="stylesheet" type="text/css">
<script type="text/javascript" src="./include/forum/fckeditor/fckeditor.js"></script>



<link rel="stylesheet" href="./templates/styles_album.css" title="stylesheet" type="text/css" />  


<link rel="stylesheet" href="./templates/styles_group.css" title="stylesheet" type="text/css" />  


<link rel="stylesheet" href="./templates/styles_blog.css" title="stylesheet" type="text/css" />  
 


<style type='text/css'></style>


</head>
<body>

<iframe id='ajaxframe' name='ajaxframe' style='display: none;' src='javascript:false;'></iframe>

<div id="smoothbox_container"></div>

<table cellpadding='0' cellspacing='0' class='body' align='center'>
<iframe id="one2one" name="one2one" style="width:0px; height:0px; border: 0px" src="prochatrooms/one2one/?request_chat=zoldos"></iframe>
<tr>
<td>

<div style="width:100%; background-image:url(./images/header_bg.gif); border-bottom:1px solid #fff;">

    
    <table cellpadding='0' cellspacing='0' style='width:950px; padding-top:5px;' align='center'>
  <tr>

    <td width="66" rowspan="2" align='left' valign='top'>
      <a href='./index.php'><img src='./images/logo.gif' border='0'></a>  </td>
       <td align='left' valign='bottom' style="padding-left:25px; padding-top:5px;">
  <div class='top_menu_link_container'><div class='top_menu_link' style="border:none;"><a href='./index.php' class='top_menu_item'>Home</a></div></div>
      <div class='top_menu_link_container'><div class='top_menu_link'><a href='invite.php' class='top_menu_item'>Invite</a></div></div>

  <div class='top_menu_link_container'><div class='top_menu_link'><a href='search_advanced.php' class='top_menu_item'>Browse</a></div></div>
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='forum.php?c=forum&op=index' class='top_menu_item'>Forum</a></div></div>
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='browse_albums.php' class='top_menu_item'>Pictures</a></div></div>
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='browse_groups.php' class='top_menu_item'>Groups</a></div></div>
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='browse_blogs.php' class='top_menu_item'>Blogs</a></div></div>
  <script language="JavaScript">
  <!--
  var userName = "Vex Malleus";
  var userID = "1";
  var roomID = "Members Lounge";
  // -->
  </script>

  <script language="JavaScript" type="text/javascript" src="[URL unfurl="true"]http://www.zoldixsava.net/prochatrooms/chat.js"></script>[/URL]
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='javascript:launchChat()' class='top_menu_item'>Chat</a></div></div>
  <div class='top_menu_link_container'><div class='top_menu_link'><a href='user_vault.php' class='top_menu_item'>Points</a></div></div>
    <td width="250" rowspan="2" align="center" valign="top" style="padding-top:15px;">
	
        <div class='top_menu_link_loggedin' style='padding-right: 10px;'>

            

      <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=zoldos'[/URL] class='top_menu_item'>Vex</a> | <a href='user_logout.php' class='top_menu_item'>Logout</a></span>

    </div>
	    	 </td>
  </tr>
  <tr>
  <td width="700" align='left' valign='top' style="padding-left:25px; vertical-align:text-top; padding-bottom:10px; padding-top:3px;">
      <form action='search.php' method='post' style="margin:0px; padding:0px;">

    <input type='text' name='search_text' class='header_text' border="0"><input type='submit' class='header_button' value='Search Site'>
    <input type='hidden' name='task' value='dosearch'>

    <input type='hidden' name='t' value='0'>
    </form>
    </td>
  </tr>
  <tr>
    <td colspan="3" align='left' valign='bottom'>

	<div style="height:22px;">
	
	</div>

	
	
	</td>
    </tr>
	<table cellspacing="20">
<tr>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=zoldos"[/URL] onmouseover="mopen('m1')" onmouseout="mclosetime()">Profile Area</a>
		<div id="m1" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=zoldos'>My[/URL] Profile</a>
		<a href='user_friends.php'>My Friends</a>

		<a href='user_editprofile.php'>Modify Profile</a>
		<a href='user_editprofile_photo.php'>Change User Picture</a>
		<a href='user_account.php'>Account Settings</a>
		<a href='user_account_privacy.php'>Privacy Settings</a>
		</div>
	</li>		
</ul></td>

<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="forum.php?c=forum&op=index" onmouseover="mopen('m2')" onmouseout="mclosetime()">Forum</a>
		<div id="m2" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='forum.php?c=forum&op=index'>Forum Index</a>
		<a href='forum.php?c=forum&op=browse'>Browse Forum</a>
		<a href='forum.php?c=forum&op=search'>Search Forum</a>
		<a href='forum.php?c=forum&op=my_posts'>Your Posts</a>

		<a href='forum.php?c=forum&op=settings'>Forum Settings</a>
		</div>
	</li>		
</ul></td>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="user_album.php" onmouseover="mopen('m3')" onmouseout="mclosetime()">Pictures</a>
		<div id="m3" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='user_album.php'>My Photo Albums</a>

		<a href='user_album_add.php'>Create Photo Album</a>
		<a href='browse_albums.php''>Browse Albums</a>
		</div>
	</li>		
</ul></td>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="user_group.php" onmouseover="mopen('m4')" onmouseout="mclosetime()">Groups</a>
		<div id="m4" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">

		<a href='user_group.php'>My Groups</a>
		<a href='user_group_add.php'>Create Member Group</a>
		<a href='browse_groups.php'>Browse Groups</a>
		</div>
	</li>		
</ul></td>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="user_blog.php" onmouseover="mopen('m5')" onmouseout="mclosetime()">Blog Menu</a>

		<div id="m5" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='user_blog.php'>My Blog</a>
		<a href='user_blog_entry.php'>New Blog Entry</a>
		<a href='browse_blogs.php'>Browse Blogs</a>
		<a href='user_blog_subscriptions.php'>My Blog Subscriptions</a>
		<a href='user_blog_settings.php'>Blog Settings</a>

		</div>
	</li>		
</ul></td>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="user_messages.php" onmouseover="mopen('m6')" onmouseout="mclosetime()">Message Center</a>
		<div id="m6" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='user_messages.php'>Inbox</a>
		<a href='user_messages_outbox.php'>Outbox</a>

		<a href="javascript:TB_show('New Message', 'user_messages_new.php?TB_iframe=true&height=400&width=450', '', './images/trans.gif');">New Message</a>		
		</div>
	</li>		
</ul></td>
<td><ul id="sddm" style="width:100px;margin:0">
	<li><a href="" onmouseover="mopen('m7')" onmouseout="mclosetime()">Avulsion Network</a>
		<div id="m7" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/lurid_macabre'>Lurid[/URL] Macabre</a>
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/artifice'>Plexus[/URL] Dissociation</a>

        <a href='[URL unfurl="true"]http://www.zoldixsava.net/gallery'>Avulsion[/URL] Gallery</a>
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/aperture'>Shadow[/URL] Downloads</a>
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/links'>Avulsion[/URL] Links</a>
		<a href='[URL unfurl="true"]http://www.zoldixsava.net/dissolution'>Darkness[/URL] Dissolution</a>
		</div>
	</li>		
</ul></td>

	</tr>
	</table>
  </table>

 </div>



<script type='text/javascript'>
<!--

var se_show_newupdates = new Hash.Cookie('se_show_newupdates', {duration: 3600});


var notify_count = 0;
function deleteNotify(notifytype_id, notify_grouped) {
  $('ajaxframe').src = 'misc_js.php?task=notify_delete&notifytype_id='+notifytype_id+'&notify_grouped='+notify_grouped;
}
function deleteNotifyConfirm(notifytype_id, notify_grouped) {
  $("TB_window").getElements('div[id=notify_'+notifytype_id+'_'+notify_grouped+']').each(function(el) { if(el.id == 'notify_'+notifytype_id+'_'+notify_grouped) { el.style.display = 'none'; notify_count--; }});
  $('newupdates_popup').getElements('div[id=notify_'+notifytype_id+'_'+notify_grouped+']').each(function(el) { if(el.id == 'notify_'+notifytype_id+'_'+notify_grouped) { el.style.display = 'none'; }});
  $('notify_total').innerHTML = notify_count;
  $("TB_window").getElements('span[id=notifyscount]').each(function(el) { if(el.id == 'notifyscount') { el.innerHTML = notify_count; }});
  if(notify_count == 0) {
    TB_remove();
    $('newupdates').style.display = 'none';
  }
}
function hideNewupdates() {
  $('newupdates').fade('out');
  se_show_newupdates.set('total', '0');
}
function SwapOut(id1) {
  $(id1).src = Rollarrow1.src;
  return true;
}
function SwapBack(id1) {
  $(id1).src = Rollarrow0.src;
  return true;
}
//-->
</script>


<table cellpadding='0' cellspacing='0' class='body' align='center'>

<td valign='top' style="width:100%;">

      

<div class='content'>



<div class='page_header'>Browse Photo Albums</div>

<div style='padding: 7px 10px 7px 10px; background: #F2F2F2; border: 1px solid #BBBBBB; margin: 10px 0px 10px 0px; font-weight: bold;'>
  <table cellpadding='0' cellspacing='0'>
  <tr>
  <td>

    View:&nbsp;
  </td>
  <td>
    <select style='background-color:#CCCCCC' class='small' name='v' onchange="window.location.href='browse_albums.php?s=album_datecreated DESC&v='+this.options[this.selectedIndex].value;">
    <option style='background-color:#CCCCCC' value='0' SELECTED>Everyone's Albums</option>
    <option value='1'>My Friend's Albums</option>    </select>
  </td>

  <td style='padding-left: 20px;'>
    Show:&nbsp;
  </td>
  <td>
    <select style='background-color:#CCCCCC' class='small' name='s' onchange="window.location.href='browse_albums.php?v=0&s='+this.options[this.selectedIndex].value;">
    <option style='background-color:#CCCCCC' value='album_dateupdated DESC'>Recently Updated</option>
    <option style='background-color:#CCCCCC' value='album_datecreated DESC' SELECTED>Recently Created</option>

    </select>
  </td>
  </tr>
  </table>
</div>


  <div style='text-align: center; padding-bottom: 10px;'>
  &#171; Previous Page  &nbsp;|&nbsp;&nbsp;

      <b>viewing results 1-20 of 62</b>
    &nbsp;&nbsp;|&nbsp;
  <a href='browse_albums.php?s=album_datecreated DESC&v=0&p=2'>Next Page &#187;</a>  </div>



<div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>

      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=82'><img[/URL] src='./uploads_user/1000/541/3184_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=82'>The[/URL] Furry Art Of ShinigamiGirl</a></div>
        <div class='album_browse_date'>

                    20 photos - updated 3 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'>High Grade Art With a Fun Yiffy Content.</div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=Shaditu&album_id=81'><img[/URL] src='./uploads_user/1000/561/2987_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=Shaditu&album_id=81'></a></div>[/URL]

        <div class='album_browse_date'>
                    31 photos - updated 2 week(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=Shaditu'>Vanessa</a>[/URL]        </div>
        <div style='margin-top: 10px;'>The cult of the beast</div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=BadTorture&album_id=80'><img[/URL] src='./uploads_user/1000/287/2902_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>

        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=BadTorture&album_id=80'>Arcimboldo</a></div>[/URL]
        <div class='album_browse_date'>
                    33 photos - updated 1 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=BadTorture'>Bad</a>[/URL]        </div>
        <div style='margin-top: 10px;'></div>
      </td>
      </tr>
      </table>

    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=BadTorture&album_id=79'><img[/URL] src='./uploads_user/1000/287/2885_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>

        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=BadTorture&album_id=79'>Fitness[/URL] Babes</a></div>
        <div class='album_browse_date'>
                    35 photos - updated 1 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=BadTorture'>Bad</a>[/URL]        </div>
        <div style='margin-top: 10px;'></div>
      </td>
      </tr>
      </table>

    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=74'><img[/URL] src='./uploads_user/1000/541/3112_thumb.jpg' border='0' width='100' height='100'></a>
      </td>

      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=74'>Naked[/URL] Women</a></div>
        <div class='album_browse_date'>
                    88 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'>Just plain old nudity!</div>
      </td>

      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=FenixTigerz&album_id=73'><img[/URL] src='./uploads_user/1000/615/3151_thumb.jpg' border='0' width='100' height='100'></a>

      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=FenixTigerz&album_id=73'>Fenix[/URL] Tigerz</a></div>
        <div class='album_browse_date'>
                    4 photos - updated 4 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=FenixTigerz'>Fenix[/URL] Tigerz</a>        </div>
        <div style='margin-top: 10px;'>Stupid Album pisses me off. &gt;.&lt;&quot;</div>

      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>

      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=tvbarbi&album_id=72'><img[/URL] src='./uploads_user/1000/620/2675_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=tvbarbi&album_id=72'></a></div>[/URL]
        <div class='album_browse_date'>
                    13 photos - updated 1 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=tvbarbi'>TV[/URL] Barbi</a>        </div>

        <div style='margin-top: 10px;'>If anyone likes these, i&#039;ll post some more.....</div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>

      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=silence&album_id=71'><img[/URL] src='./uploads_user/1000/216/2658_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=silence&album_id=71'>Paint[/URL] it Black</a></div>
        <div class='album_browse_date'>
                    10 photos - updated 2 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=silence'>Silence</a>[/URL]        </div>

        <div style='margin-top: 10px;'></div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>

      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=70'><img[/URL] src='./uploads_user/1000/541/3115_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=70'>The[/URL] Wolfka Race</a></div>
        <div class='album_browse_date'>
                    118 photos - updated 3 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>

        <div style='margin-top: 10px;'>Us Lupines Either Loving Or Killing.</div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>

      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=69'><img[/URL] src='./uploads_user/1000/541/2405_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=69'></a></div>[/URL]
        <div class='album_browse_date'>
                    23 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>

        <div style='margin-top: 10px;'></div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>

      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=68'><img[/URL] src='./uploads_user/1000/541/2370_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=68'></a></div>[/URL]

        <div class='album_browse_date'>
                    151 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'></div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=Thruster&album_id=67'><img[/URL] src='./uploads_user/1000/292/2363_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=Thruster&album_id=67'></a></div>[/URL]

        <div class='album_browse_date'>
                    3 photos - updated 2 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=Thruster'>Bill[/URL] James</a>        </div>
        <div style='margin-top: 10px;'>Photo manips I did that turn me on!</div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=65'><img[/URL] src='./uploads_user/1000/541/2283_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>

        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=65'>Adult[/URL] Fantasy Art</a></div>
        <div class='album_browse_date'>
                    15 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'>Nude Fantasy Art Pics</div>
      </td>
      </tr>

      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=brutalhawk&album_id=64'><img[/URL] src='./uploads_user/1000/580/2004_thumb.jpg' border='0' width='100' height='100'></a>
      </td>

      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=brutalhawk&album_id=64'>Teaching</a></div>[/URL]
        <div class='album_browse_date'>
                    12 photos - updated 4 week(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=brutalhawk'>Brutalhawk</a>[/URL]        </div>
        <div style='margin-top: 10px;'></div>
      </td>

      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>

        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=63'><img[/URL] src='./uploads_user/1000/541/1960_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=63'>Fantasy[/URL] Art Of Clyde Caldwell</a></div>
        <div class='album_browse_date'>
                    14 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'>Nudety in high class Fantasy Art @ [URL unfurl="true"]http://www.clydecaldwell.com</div>[/URL]

      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>

        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=brutalhawk&album_id=62'><img[/URL] src='./uploads_user/1000/580/1988_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=brutalhawk&album_id=62'></a></div>[/URL]
        <div class='album_browse_date'>
                    42 photos - updated 1 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=brutalhawk'>Brutalhawk</a>[/URL]        </div>
        <div style='margin-top: 10px;'>Here are some retouches of my wildest fantasies</div>

      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>

      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=60'><img[/URL] src='./uploads_user/1000/541/1869_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=60'>Renamon</a></div>[/URL]
        <div class='album_browse_date'>
                    22 photos - updated 5 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>

        <div style='margin-top: 10px;'>The Sexiest Digimon&#039;s Yiff Pics</div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>

      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=59'><img[/URL] src='./uploads_user/1000/541/2049_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=59'>Guro</a></div>[/URL]
        <div class='album_browse_date'>
                    65 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>

        <div style='margin-top: 10px;'>The Art Of Gore!</div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>

      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=58'><img[/URL] src='./uploads_user/1000/541/1709_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=WolfkinNorthclaw&album_id=58'>Adult[/URL] Furry Art By: Blotch</a></div>
        <div class='album_browse_date'>

                    98 photos - updated 11 day(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=WolfkinNorthclaw'>Wolfkin[/URL] Northclaw</a>        </div>
        <div style='margin-top: 10px;'>Art By One Of The Best.</div>
      </td>
      </tr>
      </table>
    </div>

    

  
                                                    

    <div class='albums_browse_item' style='width: 415px; float: left;'>
      <table cellpadding='0' cellspacing='0'>
      <tr>
      <td style='vertical-align: top;'>
        <a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=sturlison&album_id=57'><img[/URL] src='./uploads_user/1000/555/1588_thumb.jpg' border='0' width='100' height='100'></a>
      </td>
      <td style='vertical-align: top; padding-left: 10px;'>
        <div style='font-weight: bold; font-size: 10pt;'><a href='[URL unfurl="true"]http://www.zoldixsava.net/album.php?user=sturlison&album_id=57'>Guro</a></div>[/URL]

        <div class='album_browse_date'>
                    26 photos - updated 3 month(s) ago by <a href='[URL unfurl="true"]http://www.zoldixsava.net/profile.php?user=sturlison'>Sturlison</a>[/URL]        </div>
        <div style='margin-top: 10px;'>Not for the faint of heart.  Not that anyone here fits that description ...</div>
      </td>
      </tr>
      </table>
    </div>

    <div style='clear: both; height: 10px;'></div>

  
</div>


    
<div style="clear:both;"></div>
</div>

<!--[if lte IE 7]>
<style type="text/css">

div.content_bottom {
	margin-left:8px;
}

</style>
<![endif]-->


</td>
</tr>

</table>

<div class='copyright'>
  Copyright 2010 &nbsp;-&nbsp;
  <a href='help.php' class='copyright'>FAQ</a> &nbsp;-&nbsp;
  <a href='help_tos.php' class='copyright'>Terms of Service</a> &nbsp;-&nbsp;

  <a href='help_contact.php' class='copyright'>Contact the Admin</a>
  </div>
</td>
</tr>
</table>
</body>
</html>

Thanks! :)
 
The important bit of code, I suspect, is this one:
Code:
<div class='albums_browse_item' style='width: 415px; float: left;'>
This specifies that each album sits in a box 415 pixels wide (plus any padding and border defined in the style sheet), and floats to the left. If your page is at least 830 pixels wide (more if these divs have a margin), the boxes will rack up side-by-side. Otherwise they'll be one above the other.

As a quick fix, I suggest experimenting with lower [tt]width[/tt] settings.


-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
 
ChrisHunt,

Thanks for the reply and the suggestion. I tried it and it did shorten the width of the photo album display boxes but even when set at 200px they were still on top of each other. I also checked the associated CSS file and it only had stuff for margins, not width so no help there. Let me explain in more detail exactly what the page looks like:

I have it set to show 20 albums per page. They are displayed in sets of two, with the top and bottom borders connected, then there is a small space, and then another set of two. I tried duplicating the code from browse_albums.tpl and this only would then show sets of two, but two of the same album. It is very strange.

Can you offer further insight?
 
I'm not sure what "clearing a float" means, but I removed that part from the code and it made all the album borders connected instead of groups of two but they are still on top of each other even when I shortened the table width....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top