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

Specifying a separate stylesheet for mobile browsers


You can accommodate your website's visitors using mobile devices to view your website by specifying a separate mobile stylesheet.

Getting ready

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

How to do it...

  1. 1. Insert the following HTML into the<head> element of the index.php file:

    <head>
    <!-- some code omitted -->
    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/rhuk_milkyway/css/handheld.css" type="text/css" media="handheld" />
    </head>
    
  2. 2. Once you have uploaded the file to your server, visitors on handheld devices should now see the style defined in your handheld.css file.

Note

Testing your handheld stylesheet

If you want to view a simple approximation of what your website will look like on a mobile device, you can use Firefox's Web Developer add-on, available at https://addons.mozilla.org/en-US/firefox/addon/60. Alternatively, Opera Mini, a common mobile browser...

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