Discussion
Help with Relaxation navigation(back to index)Can anyone tell me what to add to provide a link back to my blog from fb.php using relaxation template?
posted by
agiacosa on 16 Aug 05 at 10:15 PM
Hope you mean this:
Edit row 22 in relaxation_archives.php
21 <div id="sidebar">
22 <?php if ('<#fbcats#>') { echo '<h2>Categories</h2><#fbcats#>
'; } ?>
23 <ul>
you cadd add, for example, a "Home" link in this way:
21 <div id="sidebar">
22 <?php if ('<#fbcats#>') { echo '<h2>
Home</h2>
<h2>Categories</h2><#fbcats#>
'; } ?>
23 <ul>
Be sure only to not write something outside the echoes ' ' quotes
Hope this helps
Elis, happy with the discovery of Folderblog :-)
posted by Elis on 17 Aug 05 at 7:45 AM
Sorry, I dont how show the code of the home link and, afterall, the script above goes well only if you select Categories. Another way is to put another menu indipendent of the Categories in this way:
Put your link
- from row 21 <div id="sidebar">
- to row 22 <?php if ('<#fbcats#>')...etc
Example:
21 <div id="sidebar">
22 <h2>Put here your home link </h2>
23 (ex 22) <?php if ('<#fbcats#>') { echo '<h2>Categories</h2><#fbcats#>
'; } ?>
Bye and sorry for the previous mistake
Elis
posted by Elis on 17 Aug 05 at 8:04 AM
Or you could simply do a
home and go manually..
posted by
Sean on 7 Sep 05 at 10:45 PM
Post a Reply:
(back to index)