Author Topic: [MOD] Add a link below the category section  (Read 4401 times)

0 Members and 1 Guest are viewing this topic.

Offline senloel

  • Full Member
  • ***
  • Posts: 196
    • View Profile
[MOD] Add a link below the category section
« on: September 04, 2013, 01:14:39 PM »
Hi,

the idea came from here: http://www.4homepages.de/forum/index.php?topic=31322.0


Let's start:

Step 1 :arrow: Open home.html in your template folder

Step 2 :arrow: find this section:
                          <tr>
                            <
td class="row2" valign="top">{categories}</td>
                          </
tr>


Step 3 :arrow: add after {categories}...
<br><a href="http://yourlink">yourlink-Text</a>

Step 4 :arrow: ...so that it looks like this:
                          <tr>
                            <
td class="row2" valign="top">{categories}<br><a href="http://yourlink">yourlink-Text</a></td>
                          </
tr>


Step 5 :arrow: Replace yourlink with the link


If you want to add more than one link:

 :arrow: do Steps 1-5

Step 6: :arrow: after
{categories}<br><a href="http://yourlink">yourlink-Text</a>

add this for a second time...
<br><a href="http://yourlink">yourlink-Text</a>

 :arrow: ...so that it looks like this:
                          <tr>
                            <
td class="row2" valign="top">{categories}<br><a href="http://yourlink">yourlink-Text</a><br><a href="http://yourlink">yourlink-Text</a></td>
                          </
tr>



If you want to add a button instaed the normal link text:

 :arrow: do Steps 1-5

Step 8: :arrow: add after:
<a href="http://yourlink">

this...
<img src="http://yourbutton-url.jpg" alt="Link-Text">

...so that it looks like this:
                           <tr>
                            <
td class="row2" valign="top">{categories}<br><a href="http://yourlink"><img src="http://yourbutton-url.jpg" alt="Link-Text"></a></td>
                          </
tr>


Step 9: :arrow: Remember to delete yourlink-Text here:
<a href="http://yourlink">yourlink-Text</a>


Have fun!

Patrick
« Last Edit: September 04, 2013, 01:55:38 PM by senloel »