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

Adding a print stylesheet to Joomla!


The fundamental aspect of print stylesheets is linking them.

Getting ready

Open your template's index.php file and locate the content within the<head> section of the document.

How to do it...

  1. 1. Within the template's index.php file, add the following highlighted line within the<head> element:

    <head>
    <!—some code omitted -->
    <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/print.css;" type="text/css" media="print" />
    </head>
    
  2. This tells the template to insert a link to your print stylesheet. You should be able to see this HTML in your page once you've reuploaded the file:

    <link rel="stylesheet" href="/templates/rhuk_milkyway/css/print.css" type="text/css" media="print" />
    

The print stylesheet is now linked to your Joomla! template. We'll add to the print stylesheet in subsequent chapters.

How it works...

In many web browsers, when you view the print preview or print a page, the...

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