J1.5:Customising the JA Purity template/customisations/Modifying the horizontal menu colour
From Joomla! Documentation
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, style.css and arrow2.png, can be found in templates/ja_purity. If you've been following the tutorial, you can download a tutorial version of the template that installs to the templates/my_japurity folder. Inside the folder of the template, the files are located as follows:
<location of template>/ images/ arrow2.png styles/ header/XXXXXX ( XXXXXX is replaced with a color such as green or blue ) style.css
- 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):
- Change all instances of #1374A5 to #999999 (near lines 57,70,75,82)
- Change all instances of #4394BD to #BBBBBB (near lines 56,76,95,97)
- Change all instances of #005A87 to #555555 (near lines 77,98)
- Change all instances of #2A84B1 to #AAAAAA (near lines 89,103)
- 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;
- }
- 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;
- }
- Add the following style:
- #ja-mainnav ul.menu li > a {
- border-left: 1px solid #BBBBBB;
- }
- 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;
- }
- Copy the arrow2.png file from main template images directory to your color scheme's images directory for example styles/XXXX/images where XXXX is blue or green or your own custom color scheme.
- Modify that file to suit your scheme
- Finish
Here's the result...