Author Topic: editing links; changing the navigation?  (Read 6405 times)

0 Members and 1 Guest are viewing this topic.

Offline zellcell

  • Newbie
  • *
  • Posts: 16
    • View Profile
editing links; changing the navigation?
« on: April 29, 2007, 08:12:10 PM »
hello.. if got some questions. maybe someone can help me..

this i s my site http://www.dramfank.org/4images

you see left on the right site the registration form...  i want above this section ,. my navigation.. and home button music links contact......

how can i manage that??? woul be great if someone could help me



greets manuel

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: editing links; changing the navigation?
« Reply #1 on: April 30, 2007, 08:41:21 AM »
modify your templates to your liking

Offline zellcell

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: editing links; changing the navigation?
« Reply #2 on: April 30, 2007, 11:49:31 AM »
.. the problems is i dont know how....

manurom

  • Guest
Re: editing links; changing the navigation?
« Reply #3 on: April 30, 2007, 01:07:24 PM »
Hello;
could you be more explicite about features you want to add? Must them be visible in all pages, or just for logged users...
What is "My navigation", for instance?

Offline zellcell

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: editing links; changing the navigation?
« Reply #4 on: April 30, 2007, 06:30:49 PM »
it should look like this


Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: editing links; changing the navigation?
« Reply #5 on: May 01, 2007, 12:04:43 AM »
The 2 templates you need to edit are: user_loginform.html & user_logininfo.html

user_loginform.html is for when visitors are not logged into your gallery and see the username and password boxes.

user_logininfo.html is for when someone is logged into the gallery.

If you do not edit both where you want the links then you will only be able to see the navigation when you are logged in or logged out, depending on what one you edit. If you edit both then you will always see navigation.

manurom

  • Guest
Re: editing links; changing the navigation?
« Reply #6 on: May 01, 2007, 09:45:58 AM »
Or else, you may create a tag like {4images_menu}: http://www.4homepages.de/forum/index.php?topic=6839.0

The new file templates/7dana/4images_menu.html should contain a code like this:
Code: [Select]
<table width="180" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="head2" height="20"><img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />Navigation</td>
</tr>
<tr>
<td><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<tr>
<td align="left" class="box_back">
<!-- Here are the links you will have to change------------------------------------------------->
&nbsp;&nbsp;<a href="index.php">&raquo; Home</a><br />
&nbsp;&nbsp;<a href="http://url_to_downloads">&raquo; Downloads</a><br />
&nbsp;&nbsp;<a href="http://url_to_links">&raquo; Links</a><br />
&nbsp;&nbsp;<a href="http://url_to_contact">&raquo; Contact</a><br />
<!-- End of the links ------------------------------------------------------------------------------------>
</td>
</tr>
<tr>
<td><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
</table>
« Last Edit: May 01, 2007, 10:09:50 AM by manurom »

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: editing links; changing the navigation?
« Reply #7 on: May 03, 2007, 07:42:00 AM »
@ manurom

Didn't even think of that. Was nice of you to post it  :wink: