Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Joomla! 1.5 Templates Cookbook

You're reading from   Joomla! 1.5 Templates Cookbook Over 60 simple but incredibly effective recipes for taking control of Joomla! templates

Arrow left icon
Product type Paperback
Published in Jul 2010
Publisher Packt
ISBN-13 9781849511247
Length 236 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Joomla! 1.5 Templates Cookbook
Credits
About the Author
About the Reviewers
1. Preface
1. Joomla! Theming Basics 2. Custom Joomla! Templates FREE CHAPTER 3. Theming the Details 4. Custom Page Templates 5. Styling Joomla! for Print 6. Joomla! Admin Templates 7. Social Media and Joomla! 8. Styling Joomla! for Mobiles 9. Joomla! and JavaScript 10. Miscellaneous Joomla! Templating Joomla! Output Overrides

Linking back to the top of your page


If your website contains a number of very long articles or pieces of content, it's wise to include a back to the top link at the bottom of each page.

Getting ready

Open your Joomla! template's index.php file. For the purposes of this example, we'll be using the rhuk_milkyway template, though the technique can be applied to any Joomla! template.

How to do it...

  1. 1. Search for the following snippet of code in your template:

    <table class="nopad">
    <tr valign="top">
    <td>
    <jdoc:include type="component" />
    <jdoc:include type="modules" name="footer" style="xhtml"/>
    </td>
    
  2. 2. Create an anchor called top above the line where the statement<jdoc:include type="component" /> is included in your page:

    <table class="nopad">
    <tr valign="top">
    <td>
    <a name="top">&nbsp;</a>
    <jdoc:include type="component" />
    <jdoc:include type="modules" name="footer" style="xhtml"/>
    </td>
    
  3. 3. Beneath...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image