Go Back   vb.org Archive > Community Discussions > Style and Graphics Requests (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-16-2009, 11:28 PM
AzzidReign's Avatar
AzzidReign AzzidReign is offline
 
Join Date: Apr 2006
Posts: 497
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Looking for footer help - Getting certain links to line up properly

I need [hopefully] minor help with getting these links to line up properly. This is what I have so far:
http://www.se7ensins.com/forums/
Scroll down to footer.

I'm trying to get the links on the bottom right (contact us, privacy, etc) to show up like this image:


This is the code:
HTML Code:
$ad_location[ad_footer_start]
$spacer_close

<!-- /content area table -->

<form action="$vboptions[forumhome].php" method="get">

<!-- / icons and login code -->
<table cellpadding="0" cellspacing="0" border="0" width="856px" id="footer" align="center">
<tr><td colspan="3" align="center" height="100px">
<!-- icons and login code -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr><td height="20px" class="smallfont" align="center" style="padding-bottom:12px;">$vbphrase[all_times_are_gmt_x_time_now_is_y]</td></tr></table>
		<table cellpadding="2" cellspacing="0" border="0" align="center" style="border:1px solid #bfbfbf;">
		<tr>
			<td class="alt2" style="border-right:1px solid #fff; padding:5px 5px 5px 5px;"><img src="$stylevar[imgdir_statusicon]/forum_new.png" alt="$vbphrase[contains_new_posts]" border="0" /></td>
			<td class="alt1" style="border-right:1px solid #bfbfbf; border-left:1px solid #bfbfbf; padding:0 5px 0 0;"><span class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</span></td>
			<td class="alt2" style="border-right:1px solid #bfbfbf; padding:5px 5px 5px 5px;"><img src="$stylevar[imgdir_statusicon]/forum_old.png" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
			<td class="alt1" style="padding:0 5px 0 0;"><span class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</span></td>
		<if condition="$vboptions['showlocks']">
			<td class="alt2"><img src="$stylevar[imgdir_statusicon]/forum_old_lock.png" alt="$vbphrase[a_closed_forum]" border="0" /></td>
			<td class="alt1"><span class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</span></td>
		
		</if>
        </tr>
		</table>

</td></tr>

<tr>

	<if condition="$show['quickchooser']">
		<td width="250px" height="0px" style="padding-left:35px;">
			<select name="styleid" onchange="switch_id(this, 'style')" style="width:120px;">
				<optgroup label="$vbphrase[quick_style_chooser]">
					$quickchooserbits
				</optgroup>
			</select>
		</td>
	</if>
	<if condition="$show['languagechooser']">
		<td>
			<select name="langid" onchange="switch_id(this, 'lang')" style="width:120px;">
				<optgroup label="$vbphrase[quick_language_chooser]">
					$languagechooserbits
				</optgroup>
			</select>
		</td>
	</if>
<td align="center" width="270px" height="0px">








</td>
	<td align="$stylevar[right]" width="270px" height="0px" style="padding-right:25px;">
	<div class="smallfont" align="left">
	<!-- Do not remove this copyright notice -->
	$vbphrase[powered_by_vbulletin]
	<!-- Do not remove this copyright notice --><br />

<!-- Do not remove this copyright notice -->
<em>Design by:</em><strong><a href="http://edenwebs.com/">EdenWebs.com</a></strong>
<!-- Do not remove this copyright notice -->
 
	</div>

	<div class="smallfont" align="left">
	<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
	$cronimage
	<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->

	$vboptions[copyrighttext]
	</div>

		<div class="smallfont">
			<strong>
				<if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9">$vbphrase[contact_us]</a></if>
				<if condition="$vboptions['hometitle']"><a href="$vboptions[homeurl]">$vboptions[hometitle]</a></if> <br />
				<if condition="$vboptions[privacyurl]"><a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a></if>
				<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a><br />
				$template_hook[footer_links]
				<if condition="$show['admincplink']"><a href="$admincpdir/index.php$session[sessionurl_q]">$vbphrase[admin]</a></if>
				<if condition="$show['modcplink']"><a href="$modcpdir/index.php$session[sessionurl_q]">$vbphrase[mod]</a></if>
			</strong>
		</div>

	</td>
</tr>
</table>
<br />
</form>


$ad_location[ad_footer_end]

<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
	<input type="hidden" name="s" value="$session[sessionhash]" />
	<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
	<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
	var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
	var utcOffset = new Date().getTimezoneOffset() / 60;
	if (Math.abs(tzOffset + utcOffset) == 1)
	{	// Dst offset is 1 so its changed
		document.forms.dstform.submit();
	}
//-->
</script>
<!-- / auto DST correction code -->

</if>
<script type="text/javascript">
<!--
	// Main vBulletin Javascript Initialization
	vBulletin_init();
//-->
</script>

Help please.
Reply With Quote
  #2  
Old 06-18-2009, 01:29 AM
smartkidbk5 smartkidbk5 is offline
 
Join Date: May 2009
Location: NJ
Posts: 101
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I could try helping. If you have AIM, AIM me: eXn GraViTY
if not just PM me....
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:59 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04907 seconds
  • Memory Usage 2,201KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_html
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (2)post_thanks_box
  • (2)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit_info
  • (2)postbit
  • (2)postbit_onlinestatus
  • (2)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete