J1.5

Difference between revisions of "Customising the JA Purity template/customisations/Removing the Magnifying Glass Icon"

From Joomla! Documentation

< J1.5:Customising the JA Purity template‎ | customisations
m (Applied tutorial template and removed categories)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
The original JA Purity template was provided from JoomlArt.com as a zip but the latest files have been installed along with Joomla.
+
{{:Customising the JA Purity template/tutorialtemplate|index.php|<pre>
The relevant file is in the following directory:<br />
+
    <location of template>/css/styles/header/XXXXX/style.css
Note: XXXXX is substituted for whatever style color you are trying to change. <br />
+
    Note: XXXXX is substituted for whatever style color you are trying to change.
<pre>
+
</pre>}}
    templates/ja_purity/css/styles/header/XXXXX/style.css
 
</pre>
 
 
 
If you've been following the [[Tutorial:Customising_the_JA_Purity_template|tutorial]] you can download a tutorial version of the template that installs to the following directory:<br/>
 
Note: XXXXX is substituted for whatever style color you are trying to change. <br />
 
<pre>
 
    templates/my_japurity/css/styles/header/XXXXX/style.css
 
</pre>
 
  
 
Change:
 
Change:
<pre>
+
<source lang="css">
 
#ja-search {
 
#ja-search {
 
background: url(images/icon-search.gif) no-repeat center left;
 
background: url(images/icon-search.gif) no-repeat center left;
 
}
 
}
</pre>
+
</source>
 
To
 
To
<pre>
+
<source lang="css">
 
#ja-search {
 
#ja-search {
 
background: url() no-repeat center left;
 
background: url() no-repeat center left;
  
 
}
 
}
</pre>
+
</source>
<noinclude>
 
[[Category:Beginners]]
 
[[Category:JA Purity template]]
 
[[Category:Tutorials]]
 
</noinclude>
 

Revision as of 16:32, 15 January 2011

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, 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>/css/styles/header/XXXXX/style.css
    Note: XXXXX is substituted for whatever style color you are trying to change.

Change:

#ja-search {
	background: url(images/icon-search.gif) no-repeat center left;
}

To

#ja-search {
	background: url() no-repeat center left;

}