Support Forums

Old 01-18-2008, 12:31 AM   #1
Senior Member
 
Join Date: Oct 2007
Location: victoria, Australia
Posts: 179
Rep Power: 11
paulsra is on a distinguished road
Default how to append links to bottom of page

hello world!

would someone mind showing me some HTML to make the text/links stay at the bottom of the page, unlike this:

http://www.useddirtbikes.com.au/category.php

i would like it to stay within the 'white area' right at the bottom.

i have added the links to the bottom of the maincategories.tpl.php.

BTW, im adding these links to help the spiders get around, im on a win server and cant have the url rewrite mod. is this a good idea?


thanks alot
paulsra is offline   Reply With Quote
Old 01-18-2008, 08:44 AM   #2
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,624
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

Just add another table row to the main table. Adjust the td that contains your left hand side bar to span both table rows and put your new links in the right side td in the last row.

<table>
<tr>
<td rowspan="2">Your existing left side table...</td>
<td>your main content stuff</td>
</tr>
<tr>
<td>Your new bottom links</td>
</tr>
</table>

Hope that helps,
Mike
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote
Old 01-20-2008, 10:54 PM   #3
Senior Member
 
Join Date: Oct 2007
Location: victoria, Australia
Posts: 179
Rep Power: 11
paulsra is on a distinguished road
Default

thanks alot for that mike, iv been trying to implement that code for an hour and a half now , and it looked so simple!

would you mind taking a look at the file to see why it wont work?

very much appreciated!

PHP Code:
{* $Idmaincategories.tpl.php,v 1.3 2006/05/22 17:37:04 Eric Exp $ *}
{* 
This section shows the main categories *}
     <
class="breadcrumb">
        <
a href="category.php" class="breadcrumb">{$smarty.const.LANG_BROWSE_CATEGORIES}</a>
    </
p>
    
    {
$promo}
    
    <
table class="tableborder">
        <
tr>
            <
th>{$smarty.const.LANG_BROWSE_CATEGORY}</th>
        </
tr>
        <
tr>
            <
td>
    {
html_table_adv loop=$data cols=$cols table_attr='width="100%"'}
        [[
start_link]]<img src='[[image]]' border='0' alt='[[name]]' /></a>&nbsp;[[start_link]]<strong>[[name]]</strong></a>
        ([[
total]])
        <
br />

        <!--[[
description]]-->
    {/
html_table_adv}
            </
td>
        </
tr>
</
table>

<
br>
<
br>
<
br>
<
br>
<
br>
<!-- 
// these are my links // -->

<a href="http://www.useddirtbikes.com.au/pages.php?page=11" title="See all dirtbike reviews">Dirt bike Reviews - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=78" title="See Dirt bike buyers guide">Used dirtbike buyers guide - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=75" title="Heaps of rider tips and tricks by the pros">Rider tips tricks - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=79" title="Know what to look for in a used dirtbike">Mechanical Checklist - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=64" title="Dirtbike news directory">Latest industry news</a>
<
br>
<
a href="http://www.useddirtbikes.com.au" title="Used Dirtbikes home page">Home - </a>
<
a href="http://www.useddirtbikes.com.au/search.php" title="Search all bikes for sale">Search - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=63" title="play some very addictive dirtbike games">Games - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=129" title="GPS coordinates of some cool bush trails">GPS trail coordinates - </a>
<
a href="http://www.useddirtbikes.com.au/pages.php?page=128" title="Sell your bike fast at www.useddirtbikes.com.au">Sell your bike - </a>
<
a href="http://www.useddirtbikes.com.au/toplistings.php?pg=new" title="Newest Dirt bike listings">Latest listings - </a>
<
a href="http://www.useddirtbikes.com.au/udbbb/index.php" title="Go to the Dirtbikes Online Forum">Online Forum - </a>
<
a href="http://www.useddirtbikes.com.au/category.php?type=31" title="see all apparel for sale">Apparel for sale</a
thanks again.
paulsra is offline   Reply With Quote
Old 01-21-2008, 08:47 AM   #4
Coder
 
Join Date: Mar 2006
Posts: 4,567
Rep Power: 111
Lhotch is just really niceLhotch is just really nice
Default

Are you editing the correct template?

Did you clear the tamplate cache?
__________________
Larry.
Lhotch is offline   Reply With Quote
Old 01-21-2008, 10:30 AM   #5
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,624
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

This doesn't look like it's the main template file. You should be editing the layout.tpl.php file that is in your templates directory.

-Mike
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote
Old 01-21-2008, 08:42 PM   #6
Senior Member
 
Join Date: Oct 2007
Location: victoria, Australia
Posts: 179
Rep Power: 11
paulsra is on a distinguished road
Default

oops, sorry bout that. i have cleared the cache, and i think its just my lack of skills with html tables but i still cant get it to work
here is the layout.tpl.php if you wouldnt mind looking at it once again for me?

thanks very, very much!
Paul

PHP Code:
{* $Idlayout.tpl.php,v 1.1 2006/03/14 16:08:30 Eric Exp $ *}
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<
html>
<
head>
<
LINK REL="shortcut icon" HREF="http://www.useddirtbikes.com.au/icon1.ico">
<
script type="text/javascript" src="templates/default/menu_bar/stmenu.js"></script>
{if $smarty.get.pg == 'featured'}
<title>Featured Dirtbike Listings</title>
{elseif $smarty.get.pg == 'new'}
<title>Newest Dirtbike listings</title>
{elseif $SCRIPT_NAME=='/search.php'}
<title>Search for a New or Used Dirtbike for sale here!</title>
{else}
<title>{$title}</title>
{/if} 
<meta name="Keywords" content="{$sitekeywords}" />
<meta name="Description" content="{$sitedescription}" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<base href="{$smarty.const.URL}/" />
<link rel="stylesheet" href="templates/{$smarty.const.MAIN_TEMPLATE}/style.css" type="text/css" />
    <script type="text/JavaScript">
    {literal}
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    }
    //-->
    {/literal}
    </script>
</head>
<body background="/images/bg.jpg">
<div id="wrapper">
    <!-- // Header // -->
    <div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/header.jpg" width="760" height="101" border="0" alt="{$title}" /></a></div>
        <!-- // Header // -->
  
        <!-- // Top Bar 
    <div class="topbar">
            <div id="menu"><strong>
              
            </strong></div>
    </div>
     // -->

<table width="100%" class="tableWhite">
        <tr>
            <td width="200" valign="top">
                <!-- // Navigation // -->
            <table border="0" cellpadding="0" cellspacing="0" class="navigation">
                    <tr>
                        <td class="navTitle"><i><font size="2">{$smarty.const.LANG_TPL_NAVIGATION}</font size></i></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/index.php">{$smarty.const.LANG_TPL_HOME}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/search.php">{$smarty.const.LANG_TPL_SEARCH}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/category.php">{$smarty.const.LANG_TPL_BROWSE}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/toplistings.php?pg=featured">{$smarty.const.LANG_TPL_FEATURED}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/toplistings.php?pg=new">{$smarty.const.LANG_TPL_NEW}</a></td>
                    </tr>
                    <!-- //the following table has been commented out by paul to remove
the top listings from the nav menu // -->
                              <!-- //<tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/toplistings.php?pg=top">{$smarty.const.LANG_TPL_TOP}</a></td>
                    </tr>// -->    
                {foreach from=$templatepages item="entry"}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/pages.php?page={$entry.pageID}">{$entry.pPageTitle}</a></td>
                    </tr>
                    {/foreach}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/contactus.php">{$smarty.const.LANG_TPL_CONTACT}</a></td>
                    </tr>
                    <tr>
                        <td class="navTitle"><i><font size="2">{$smarty.const.LANG_TPL_MEMBER_OPTIONS}</font size></i></td>
                    </tr>
                    {* This if statement checks for username and if it isnt found then displays the else *}
                    {if $smarty.session.username<>'' || $smarty.cookies.username<>""}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/useraccountmodify.php">{$smarty.const.LANG_TPL_MODIFY_ACCOUNT}</a></td>
                    </tr>
                    {if $canSaveFavorites=="Y"}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/userfavorites.php">{$smarty.const.LANG_TPL_VIEW_FAVORITES}</a></td>
                    </tr>
                    {/if}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/usercheckout.php">{$smarty.const.LANG_TPL_PLACE_AD}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/usermemberships.php">{$smarty.const.LANG_TPL_PURCHASE_MEMBERSHIP}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/userbrowselistings.php">{$smarty.const.LANG_TPL_MODIFY_AD}</a></td>
                    </tr>
                    <tr>

                        <td class="navlist"><img src="images/bullet.gif" 

alt="" /><a href="logout.php">{$smarty.const.LANG_TPL_LOGOUT}</a></td>
                    </tr>
                    {else}
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/userjoin.php">
{$smarty.const.LANG_TPL_REGISTER}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/userlogin.php">{$smarty.const.LANG_TPL_LOGIN}</a></td>
                    </tr>
                    <tr>
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URLS}/usercheckout.php">{$smarty.const.LANG_TPL_PLACE_AD}</a></td>
                    </tr>
                    {/if}

                </table>
                <!-- // Navigation // -->
{if $smarty.session.userlevel==6 || $smarty.session.userlevel==1}
<a href="modules.php?mod=seller_store">.</a>
{/if}
<br>
<br>
<A HREF="http://www.stolendirtbikes.com.au" target="_blank">
<IMG SRC="http://www.useddirtbikes.com.au/administration/images/stolen.gif" border=0>
</A>
<br>
<p>
<A HREF="http://www.finkedesertrace.com.au" target="_blank">
<IMG SRC="http://www.useddirtbikes.com.au/administration/images/finke.gif" border=0>
</A>
<A HREF="http://www.offroadriding.com.au/Yamaha_Academy.htm" target="_blank">
<IMG SRC="http://www.useddirtbikes.com.au/administration/images/yamahaacademy.gif" border=0>
</A>
<p>
            </td>
            <td valign="top" class="padding">
                <!-- // Content // -->
                {* This includes the content portion *}
                {include file=$body}
                <!-- // End Content // -->
<!-- // start pauls quick links at bottom of page // -->

LINKS IN HERE

<!-- // end pauls quick links at bottom of page // -->
            </td>
        </tr>
  </table>
</div>
<font color="FFFFFF">� useddirtbikes.com.au 2005-2007. All rights reserved<br>
 - A Wiredplanet Initiative-</text><br>
<a href="http://www.useddirtbikes.com.au/pages.php?page=4"><font color="#FFFFFF">FAQ</text></a>
<a href="http://www.useddirtbikes.com.au/pages.php?page=7"><font color="#FFFFFF">Terms & Conditions</text></a>
<a href="http://www.useddirtbikes.com.au/pages.php?page=6"><font color="#FFFFFF">Privacy</text></a>
<a href="http://www.useddirtbikes.com.au/pages.php?page=3"><font color="#FFFFFF">Feedback</text></a>
<a href="http://www.useddirtbikes.com.au/contactus.php"><font color="#FFFFFF">Contact Us</text></a>
</body>
</html> 
paulsra is offline   Reply With Quote
Old 01-22-2008, 12:34 AM   #7
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,624
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

Try this.

PHP Code:
{* $Idlayout.tpl.php,v 1.1 2006/03/14 16:08:30 Eric Exp $ *} 
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"
<
html
<
head
<
LINK REL="shortcut icon" HREF="http://www.useddirtbikes.com.au/icon1.ico"
<
script type="text/javascript" src="templates/default/menu_bar/stmenu.js"></script> 
{if $smarty.get.pg == 'featured'} 
<title>Featured Dirtbike Listings</title> 
{elseif $smarty.get.pg == 'new'} 
<title>Newest Dirtbike listings</title> 
{elseif $SCRIPT_NAME=='/search.php'} 
<title>Search for a New or Used Dirtbike for sale here!</title> 
{else} 
<title>{$title}</title> 
{/if} 
<meta name="Keywords" content="{$sitekeywords}" /> 
<meta name="Description" content="{$sitedescription}" /> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<base href="{$smarty.const.URL}/" /> 
<link rel="stylesheet" href="templates/{$smarty.const.MAIN_TEMPLATE}/style.css" type="text/css" /> 
    <script type="text/JavaScript"> 
    {literal} 
    <!-- 
    function MM_openBrWindow(theURL,winName,features) { //v2.0 
      window.open(theURL,winName,features); 
    } 
    //--> 
    {/literal} 
    </script> 
</head> 
<body background="/images/bg.jpg"> 
<div id="wrapper"> 
    <!-- // Header // --> 
    <div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/header.jpg" width="760" height="101" border="0" alt="{$title}" /></a></div> 
        <!-- // Header // --> 
   
        <!-- // Top Bar 
    <div class="topbar"> 
            <div id="menu"><strong> 
               
            </strong></div> 
    </div> 
     // --> 

<table width="100%" class="tableWhite"> 
    <tr>
        <td width="200" valign="top" rowspan="2"> 
      <!-- // Navigation // --> 
            <table border="0" cellpadding="0" cellspacing="0" class="navigation"> 
             <tr> 
                <td class="navTitle">
                    <i><font size="2">{$smarty.const.LANG_TPL_NAVIGATION}</font size></i>
                </td> 
            </tr> 
            <tr> 
                <td class="navlist"><img src="images/bullet.gif" alt="" />
                    <a href="{$smarty.const.URL}/index.php">{$smarty.const.LANG_TPL_HOME}</a>
                </td> 
            </tr> 
            <tr> 
                <td class="navlist"><img src="images/bullet.gif" alt="" />
                    <a href="{$smarty.const.URL}/search.php">{$smarty.const.LANG_TPL_SEARCH}</a>
                </td> 
            </tr> 
            <tr> 
                <td class="navlist"><img src="images/bullet.gif" alt="" />
                    <a href="{$smarty.const.URL}/category.php">{$smarty.const.LANG_TPL_BROWSE}</a>
                </td> 
               </tr> 
                <tr> 
                    <td class="navlist"><img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URL}/toplistings.php?pg=featured">{$smarty.const.LANG_TPL_FEATURED}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                            <a href="{$smarty.const.URL}/toplistings.php?pg=new">{$smarty.const.LANG_TPL_NEW}</a>
                        </td> 
                </tr> 
            <!-- //the following table has been commented out by paul to remove the top listings from the nav menu // --> 
            <!-- //<tr> 
                        <td class="navlist"><img src="images/bullet.gif" alt="" /><a href="{$smarty.const.URL}/toplistings.php?pg=top">{$smarty.const.LANG_TPL_TOP}</a></td> 
                    </tr>// -->     
                {foreach from=$templatepages item="entry"} 
                <tr> 
                    <td class="navlist"><img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URL}/pages.php?page={$entry.pageID}">{$entry.pPageTitle}</a>
                    </td> 
                </tr> 
                    {/foreach} 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URL}/contactus.php">{$smarty.const.LANG_TPL_CONTACT}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navTitle">
                        <i><font size="2">{$smarty.const.LANG_TPL_MEMBER_OPTIONS}</font size></i>
                    </td> 
                </tr> 
                {* This if statement checks for username and if it isnt found then displays the else *} 
                    {if $smarty.session.username<>'' || $smarty.cookies.username<>""} 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/useraccountmodify.php">{$smarty.const.LANG_TPL_MODIFY_ACCOUNT}</a>
                    </td> 
                </tr> 
                {if $canSaveFavorites=="Y"} 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/userfavorites.php">{$smarty.const.LANG_TPL_VIEW_FAVORITES}</a>
                    </td> 
                </tr> 
                {/if} 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/usercheckout.php">{$smarty.const.LANG_TPL_PLACE_AD}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist"><img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/usermemberships.php">{$smarty.const.LANG_TPL_PURCHASE_MEMBERSHIP}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/userbrowselistings.php">{$smarty.const.LANG_TPL_MODIFY_AD}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" /><a href="logout.php">{$smarty.const.LANG_TPL_LOGOUT}</a>
                    </td> 
                </tr> 
                {else} 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/userjoin.php">{$smarty.const.LANG_TPL_REGISTER}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/userlogin.php">{$smarty.const.LANG_TPL_LOGIN}</a>
                    </td> 
                </tr> 
                <tr> 
                    <td class="navlist">
                        <img src="images/bullet.gif" alt="" />
                        <a href="{$smarty.const.URLS}/usercheckout.php">{$smarty.const.LANG_TPL_PLACE_AD}</a>
                    </td> 
                </tr> 
                {/if} 
            </table> 
            <!-- // Navigation // --> 
        </td>
        <td valign="top">
            {if $smarty.session.userlevel==6 || $smarty.session.userlevel==1} 
            <a href="modules.php?mod=seller_store">.</a> 
            {/if} 
            <br> 
            <br> 
            <A HREF="http://www.stolendirtbikes.com.au" target="_blank"> 
            <IMG SRC="http://www.useddirtbikes.com.au/administration/images/stolen.gif" border=0></A> 
            <br> 
            <p><A HREF="http://www.finkedesertrace.com.au" target="_blank"> 
            <IMG SRC="http://www.useddirtbikes.com.au/administration/images/finke.gif" border=0></A> 
            <A HREF="http://www.offroadriding.com.au/Yamaha_Academy.htm" target="_blank"> 
            <IMG SRC="http://www.useddirtbikes.com.au/administration/images/yamahaacademy.gif" border=0></A> 
            <p> 
                        <!-- // Content // --> 
                {* This includes the content portion *} 
                {include file=$body} 
                <!-- // End Content // -->
        </td>
    </tr>
    <tr>
        <td align="center" valign="bottom">      
            <!-- // start pauls quick links at bottom of page // --> 

            LINKS IN HERE 

            <!-- // end pauls quick links at bottom of page // --> 
        </td>
    </tr> 
</table> 
</div> 
<font color="FFFFFF">© useddirtbikes.com.au 2005-2007. All rights reserved<br> 
- A Wiredplanet Initiative-</text><br> 
<a href="http://www.useddirtbikes.com.au/pages.php?page=4"><font color="#FFFFFF">FAQ</text></a> 
<a href="http://www.useddirtbikes.com.au/pages.php?page=7"><font color="#FFFFFF">Terms & Conditions</text></a> 
<a href="http://www.useddirtbikes.com.au/pages.php?page=6"><font color="#FFFFFF">Privacy</text></a> 
<a href="http://www.useddirtbikes.com.au/pages.php?page=3"><font color="#FFFFFF">Feedback</text></a> 
<a href="http://www.useddirtbikes.com.au/contactus.php"><font color="#FFFFFF">Contact Us</text></a> 
</body> 
</html> 
-Mike
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote
Old 01-22-2008, 08:54 AM   #8
Coder
 
Join Date: Mar 2006
Posts: 4,567
Rep Power: 111
Lhotch is just really niceLhotch is just really nice
Default

Looks like the links are on the bottom of the page to me.
__________________
Larry.
Lhotch is offline   Reply With Quote
Old 01-25-2008, 01:25 AM   #9
Senior Member
 
Join Date: Oct 2007
Location: victoria, Australia
Posts: 179
Rep Power: 11
paulsra is on a distinguished road
Default

Thanks Mike, worked prfectly, unlike my spelling!
paulsra is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Links not going to correct page PsychORoc v3.1 Questions & Support 6 11-14-2007 09:58 AM
Removing "68 Classified " at bottom of admin page Jessej v3.1 Questions & Support 1 10-20-2007 08:18 PM
can I run scripts in an content page? dawyatt v3.1 Questions & Support 11 06-22-2007 02:50 PM
Problem getting page title flyingpylon v3.1 Questions & Support 5 10-19-2006 01:15 PM
Google Juice fjarabeck Site Marketing 0 04-27-2006 01:40 PM


All times are GMT -4. The time now is 04:03 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0