J1.5

Difference between revisions of "Customising the JA Purity template/footer"

From Joomla! Documentation

< J1.5:Customising the JA Purity template
m (New page: {{stub}} <noinclude> Category:Beginners Category:JA Purity template Category:Tutorials </noinclude>)
 
m (→‎ja_purity/js/XXXXX.js: archiving articles with category removal and addition)
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{stub}}
+
{{stub/abandoned}}
<noinclude>
+
{{:Customising the JA Purity template/tutorialtemplate|index.php, template.css and image files: but-css.gif, but-xhtml10.gif, vdot.gif, grad3.gif|<pre>
[[Category:Beginners]]
+
    <location of template>/
[[Category:JA Purity template]]
+
        index.php
[[Category:Tutorials]]
+
        css/
</noinclude>
+
            template.css
 +
        images/
 +
            but-css.gif
 +
            but-xhtml10.gif
 +
            vdot.gif
 +
            grad3.gif
 +
</pre>}}
 +
==HTML and PHP Files==
 +
===ja_purity/index.php.php===
 +
<source lang="php" line start="245">
 +
<!-- BEGIN: FOOTER -->
 +
<div id="ja-footerwrap">
 +
<div id="ja-footer" class="clearfix">
 +
 
 +
<div id="ja-footnav">
 +
<jdoc:include type="modules" name="user3" />
 +
</div>
 +
 
 +
<div class="copyright">
 +
<jdoc:include type="modules" name="footer" />
 +
</div>
 +
 
 +
<div class="ja-cert">
 +
<jdoc:include type="modules" name="syndicate" />
 +
    <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="<?php echo JText::_("CSS Validity");?>" style="text-decoration: none;">
 +
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-css.gif" border="none" alt="<?php echo JText::_("CSS Validity");?>" />
 +
</a>
 +
<a href="http://validator.w3.org/check/referer" target="_blank" title="<?php echo JText::_("XHTML Validity");?>" style="text-decoration: none;">
 +
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-xhtml10.gif" border="none" alt="<?php echo JText::_("XHTML Validity");?>" />
 +
</a>
 +
</div>
 +
 
 +
<br />
 +
</div>
 +
</div>
 +
<!-- END: FOOTER -->
 +
</source>
 +
==CSS Files==
 +
===ja_purity/css/template.css===
 +
<source lang="css" line start="1395">
 +
/* FOOTER
 +
--------------------------------------------------------- */
 +
#ja-footerwrap {
 +
border-top: 5px solid #CCCCCC;
 +
padding: 20px 0 30px;
 +
clear: both;
 +
background: url(../images/grad3.gif) repeat-x bottom #F6F6F6;
 +
}
 +
 
 +
#ja-footer {
 +
padding: 0;
 +
color: #666666;
 +
background: url(../images/vdot.gif) repeat-y 22% 0;
 +
position: relative;
 +
}
 +
 
 +
#ja-footer .copyright {
 +
clear: both;
 +
display: block;
 +
padding-left: 25%;
 +
color: #666666;
 +
font-style: normal;
 +
font-size: 92%;
 +
}
 +
 
 +
#ja-footnav {
 +
padding-left: 25%;
 +
}
 +
 
 +
#ja-footer ul {
 +
margin: 0 0 5px;
 +
padding: 0;
 +
}
 +
 
 +
#ja-footer li {
 +
margin: 0;
 +
padding: 0;
 +
display: inline;
 +
background: none;
 +
}
 +
 
 +
#ja-footer li a {
 +
padding: 0 15px 0 0;
 +
display: inline;
 +
color: #666666;
 +
font-weight: bold;
 +
font-size: 92%;
 +
line-height: normal;
 +
text-decoration: none;
 +
text-transform: uppercase;
 +
}
 +
 
 +
#ja-footer li a:hover, #ja-footer li a:active, #ja-footer li a:focus {
 +
color: #333333;
 +
text-decoration: none;
 +
}
 +
 
 +
.ja-cert {
 +
font-size: 92%;
 +
position: absolute;
 +
right: 0;
 +
top: 18px;
 +
}
 +
 
 +
.ja-cert a {
 +
margin: 0 0 0 5px;
 +
padding: 0;
 +
border: none;
 +
border: none;
 +
text-decoration: none;
 +
}
 +
 
 +
.ja-cert a span {
 +
display: none;
 +
}
 +
 
 +
.ja-cert a img {
 +
border: none;
 +
}
 +
 
 +
</source>
 +
==Image Files==
 +
* but-css.gif
 +
* but-xhtml10.gif
 +
* vdot.gif
 +
* grad3.gif
 +
==Javascript Files==
 +
===ja_purity/js/XXXXX.js===
 +
<source lang="javascript" line start="">
 +
</source>
 +
 
 +
[[Category:Archived version Joomla! 1.5|{{PAGENAME}}]]

Latest revision as of 09:26, 29 April 2013

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.

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, index.php, template.css and image files: but-css.gif, but-xhtml10.gif, vdot.gif, grad3.gif, 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>/
        index.php
        css/
            template.css
        images/
            but-css.gif
            but-xhtml10.gif
            vdot.gif
            grad3.gif

HTML and PHP Files[edit]

ja_purity/index.php.php[edit]

<!-- BEGIN: FOOTER -->
<div id="ja-footerwrap">
<div id="ja-footer" class="clearfix">

	<div id="ja-footnav">
		<jdoc:include type="modules" name="user3" />
	</div>

	<div class="copyright">
		<jdoc:include type="modules" name="footer" />
	</div>

	<div class="ja-cert">
		<jdoc:include type="modules" name="syndicate" />
    <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="<?php echo JText::_("CSS Validity");?>" style="text-decoration: none;">
		<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-css.gif" border="none" alt="<?php echo JText::_("CSS Validity");?>" />
		</a>
		<a href="http://validator.w3.org/check/referer" target="_blank" title="<?php echo JText::_("XHTML Validity");?>" style="text-decoration: none;">
		<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-xhtml10.gif" border="none" alt="<?php echo JText::_("XHTML Validity");?>" />
		</a>
	</div>

	<br />
</div>
</div>
<!-- END: FOOTER -->

CSS Files[edit]

ja_purity/css/template.css[edit]

/* FOOTER
--------------------------------------------------------- */
#ja-footerwrap {
	border-top: 5px solid #CCCCCC;
	padding: 20px 0 30px;
	clear: both;
	background: url(../images/grad3.gif) repeat-x bottom #F6F6F6;
}

#ja-footer {
	padding: 0;
	color: #666666;
	background: url(../images/vdot.gif) repeat-y 22% 0;
	position: relative;
}

#ja-footer .copyright {
	clear: both;
	display: block;
	padding-left: 25%;
	color: #666666;
	font-style: normal;
	font-size: 92%;
}

#ja-footnav {
	padding-left: 25%;
}

#ja-footer ul {
	margin: 0 0 5px;
	padding: 0;
}

#ja-footer li {
	margin: 0;
	padding: 0;
	display: inline;
	background: none;
}

#ja-footer li a {
	padding: 0 15px 0 0;
	display: inline;
	color: #666666;
	font-weight: bold;
	font-size: 92%;
	line-height: normal;
	text-decoration: none;
	text-transform: uppercase;
}

#ja-footer li a:hover, #ja-footer li a:active, #ja-footer li a:focus {
	color: #333333;
	text-decoration: none;
}

.ja-cert {
	font-size: 92%;
	position: absolute;
	right: 0;
	top: 18px;
}

.ja-cert a {
	margin: 0 0 0 5px;
	padding: 0;
	border: none;
	border: none;
	text-decoration: none;
}

.ja-cert a span {
	display: none;
}

.ja-cert a img {
	border: none;
}

Image Files[edit]

  • but-css.gif
  • but-xhtml10.gif
  • vdot.gif
  • grad3.gif

Javascript Files[edit]

ja_purity/js/XXXXX.js[edit]