J1.5

Difference between revisions of "Customising the JA Purity template/customisations/Modifying the horizontal menu colour"

From Joomla! Documentation

< J1.5:Customising the JA Purity template‎ | customisations
m
m
Line 31: Line 31:
 
#: #ja-mainnavwrap {
 
#: #ja-mainnavwrap {
 
#: border-top: 1px solid #BBBBBB;
 
#: border-top: 1px solid #BBBBBB;
#: border-right: 1px solid #CCCCCC;
+
#: border-right: 1px solid #CCCCCC; <--- Add This
#: border-left: 1px solid #BBBBBB;
+
#: border-left: 1px solid #BBBBBB; <--- Add This
 
#: border-bottom: 1px solid #555555;
 
#: border-bottom: 1px solid #555555;
 
#: background: #999999;
 
#: background: #999999;
 +
#:}
 +
#:</pre>
 +
#Modify the style for #ja-mainnav > ul to the following:
 +
#:<pre>
 +
#: #ja-mainnav > ul {
 +
#: background-color: #999999;
 +
#: border-left: 1px solid #BBBBBB; <--- Add This
 +
#: padding-left: 20px;
 +
#:}
 +
#:</pre>
 +
#Add the following style:
 +
#:<pre>
 +
#: #ja-mainnav ul.menu li > a {
 +
#: border-left: 1px solid #BBBBBB;
 +
#:}
 +
#:</pre>
 +
#Add the following styles:
 +
#:<pre>
 +
#:/* Handles initial top-level active items */
 +
#: #ja-mainnav ul.menu li.active a {
 +
#: background: #CCCCCC url(images/arrow2.png) no-repeat bottom center;
 +
#: border-left: 1px solid #BBBBBB;
 +
#: color: #FFFFFF;
 +
#:}
 +
#: #ja-mainnav ul.menu li.active a span{
 +
#: color: #FFFFFF;
 +
#:}
 +
#: #ja-mainnav ul.menu li.active a:hover,
 +
#: #ja-mainnav ul.menu li.active a:active,
 +
#: #ja-mainnav ul.menu li.active a:focus {
 +
#: background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
 +
#: color: #FFFFFF;
 +
#:}
 +
#:/* Handles top-level hover/active/focus items */
 +
#: #ja-mainnav ul.menu li a:hover,
 +
#: #ja-mainnav ul.menu li a:active,
 +
#: #ja-mainnav ul.menu li a:focus{
 +
#: background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
 +
#:}
 +
#: #ja-mainnav ul.menu li a:hover span,
 +
#: #ja-mainnav ul.menu li a:active span,
 +
#: #ja-mainnav ul.menu li a:focus span{
 +
#: background: #DDDDDD;
 +
#: color: #FFFFFF;
 +
#:}
 +
#: #ja-mainnav ul.menu li:hover,
 +
#: #ja-mainnav ul.menu li.sfhover,
 +
#: #ja-mainnav ul.menu li.parentsfhover,
 +
#: #ja-mainnav ul.menu li.parent-activesfhover {
 +
#: background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
 +
#:}
 +
#: #ja-mainnav ul.menu li.parent ul > li,
 +
#: #ja-mainnav ul.menu li.parent ul li > a,
 +
#: #ja-mainnav ul.menu li.parent ul li a > span {
 +
#: background: transparent;
 +
#:}
 +
#: #ja-mainnav ul.menu li.parent > a {
 +
#: border-left: 1px solid #BBBBBB;
 +
#:}
 +
#: #ja-mainnav ul.menu li.parent ul > li:hover,
 +
#: #ja-mainnav ul.menu li.parent ul > li.sfhover,
 +
#: #ja-mainnav ul.menu li.parent ul > li.parentsfhover,
 +
#: #ja-mainnav ul.menu li.parent ul > li.parent-activesfhover {
 +
#: background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
 +
#: color: #FFFFFF;
 
#:}
 
#:}
 
#:</pre>
 
#:</pre>

Revision as of 13:01, 12 June 2009

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.


Quill icon.png
Page Actively Being Edited!

This j1.5 page is actively undergoing a major edit for a short while.
As a courtesy, please do not edit this page while this message is displayed. The user who added this notice will be listed in the page history. This message is intended to help reduce edit conflicts; please remove it between editing sessions to allow others to edit the page. If this page has not been edited for several hours, please remove this template, or replace it with {{underconstruction}} or {{incomplete}}.

The original JA Purity template was provided from JoomlArt.com as a zip but the latest files have been installed along with Joomla. The relevant files styles.css and arrow2.png are in the following directories depending on the header scheme you're using for the template:

    templates/ja_purity
                 images/
                     arrow2.png
                 styles/
                     header/XXXXXX ( XXXXXX is replaced with a color such as green or blue ) 
                                styles.css

If you've been following the tutorial you can download a tutorial version of the template that installs to the following directory:

    templates/my_japurity
                 images/
                     arrow2.png
                 styles/
                     header/XXXXXX ( XXXXXX is replaced with a color such as green or blue ) 
                                styles.css
  1. Normally you'd be able to edit the CSS in the Joomla Administration area but that isn't an option in this case. So you'll need to edit the file directly in your choice of plain text editors such as VI or Notepad. Edit the style.css file to match your new color scheme. For instance the following changes will make a readable set of colors for a grey scheme (using the blue style.css):
  2. Change all instances of #1374A5 to #999999 (near lines 57,70,75,82)
  3. Change all instances of #4394BD to #BBBBBB (near lines 56,76,95,97)
  4. Change all instances of #005A87 to #555555 (near lines 77,98)
  5. Change all instances of #2A84B1 to #AAAAAA (near lines 89,103)
  6. Modify the style for #ja-mainnavwrap to the following:
    #ja-mainnavwrap {
    border-top: 1px solid #BBBBBB;
    border-right: 1px solid #CCCCCC; <--- Add This
    border-left: 1px solid #BBBBBB; <--- Add This
    border-bottom: 1px solid #555555;
    background: #999999;
    }
  7. Modify the style for #ja-mainnav > ul to the following:
    #ja-mainnav > ul {
    background-color: #999999;
    border-left: 1px solid #BBBBBB; <--- Add This
    padding-left: 20px;
    }
  8. Add the following style:
    #ja-mainnav ul.menu li > a {
    border-left: 1px solid #BBBBBB;
    }
  9. Add the following styles:
    /* Handles initial top-level active items */
    #ja-mainnav ul.menu li.active a {
    background: #CCCCCC url(images/arrow2.png) no-repeat bottom center;
    border-left: 1px solid #BBBBBB;
    color: #FFFFFF;
    }
    #ja-mainnav ul.menu li.active a span{
    color: #FFFFFF;
    }
    #ja-mainnav ul.menu li.active a:hover,
    #ja-mainnav ul.menu li.active a:active,
    #ja-mainnav ul.menu li.active a:focus {
    background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
    color: #FFFFFF;
    }
    /* Handles top-level hover/active/focus items */
    #ja-mainnav ul.menu li a:hover,
    #ja-mainnav ul.menu li a:active,
    #ja-mainnav ul.menu li a:focus{
    background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
    }
    #ja-mainnav ul.menu li a:hover span,
    #ja-mainnav ul.menu li a:active span,
    #ja-mainnav ul.menu li a:focus span{
    background: #DDDDDD;
    color: #FFFFFF;
    }
    #ja-mainnav ul.menu li:hover,
    #ja-mainnav ul.menu li.sfhover,
    #ja-mainnav ul.menu li.parentsfhover,
    #ja-mainnav ul.menu li.parent-activesfhover {
    background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
    }
    #ja-mainnav ul.menu li.parent ul > li,
    #ja-mainnav ul.menu li.parent ul li > a,
    #ja-mainnav ul.menu li.parent ul li a > span {
    background: transparent;
    }
    #ja-mainnav ul.menu li.parent > a {
    border-left: 1px solid #BBBBBB;
    }
    #ja-mainnav ul.menu li.parent ul > li:hover,
    #ja-mainnav ul.menu li.parent ul > li.sfhover,
    #ja-mainnav ul.menu li.parent ul > li.parentsfhover,
    #ja-mainnav ul.menu li.parent ul > li.parent-activesfhover {
    background: #DDDDDD url(images/arrow2.png) no-repeat bottom center;
    color: #FFFFFF;
    }