Adding images to your theme: Difference between revisions From Online Manual

Jump to: navigation, search
(Needs major cleanup, and then put somewhere relevant.)
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
To give your [[Theme]] a unique look, you may need to modify/add your own graphics to it. The easiest way to add/modify your own graphics is by copying the images folder from the [[Default theme]] to your new theme. Once done you can modify or add graphics to (in order of folders):
To give your [[Theme]] a unique look, you may need to modify/add your own graphics to it. The easiest way to add/modify your own graphics is by copying the images directory from the [[SMF default theme]] to your new theme. Once done you can modify or add graphics to (in order of directories):


<ul class="bbc_list"><li type="disc">bbc: bulletin boards buttons which are used mainly in [[Post]] screens.
*'''bbc''' - bulletin boards buttons which are used mainly in [[Post]] screens.
</li><li type="disc">english: buttons used in forum&#039;s menu, [[Board index]] , message ..etc.
*'''english''' - buttons used in forum's menu, [[Board index]] , message ..etc.
</li><li type="disc">icons: icons used in various part of the forum.</li><li type="disc">post: icons used for posts.</li><li type="disc">topic: topics indication images. </li></ul>
*'''icons''' - icons used in various part of the forum.
*'''post''' - icons used for posts.
*'''topic''' - topics indication images.


Also the main folder (images) contains various images used in many places in your forum, such as your [[Theme]] thumbnail, messenger indicators, stars, etc.
Also the main directory (images) contains various images used in many places in your forum, such as your Theme thumbnail, messenger indicators, stars, etc.


You can call an image from your [[Theme]] by using:
You can call an image from your Theme by using:
 
{{code|1=<nowiki><img src="', $settings['images_url'], '/smflogo.gif" alt="" /></nowiki>}}
<div class="codeheader">: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a></div><code>&lt;img src=&quot;&#039;, $settings&#91;&#039;images_url&#039;], &#039;/smflogo.gif&quot; alt=&quot;&quot; /&gt; </code>
where {{code|1=<nowiki>', $settings['images_url'], '</nowiki>}} points to your theme's images directory.
where <div class="codeheader">: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a></div><code>&#039;, $settings&#91;&#039;images_url&#039;], &#039;</code> points to your theme&#039;s images folder.


or by using:
or by using:
{{code|1=<nowiki><img src="', $settings['images_url'], '/', $context['user']['language'],
'/userinfo.gif" alt="" /></nowiki>}}
Where {{code|1=<nowiki>', $settings['images_url'], '/', $context['user']['language'], '</nowiki>}} points to your theme's images/english directory, if English is selected as user default language. This will give you the possibility of making another directory for a different language. So, you can have buttons for English and Dutch for example.


<div class="codeheader">: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a></div><code>&lt;img src=&quot;&#039;, $settings&#91;&#039;images_url&#039;], &#039;/&#039;, $context&#91;&#039;user&#039;]&#91;&#039;language&#039;],
[[Category:Developing SMF]]
&#039;/userinfo.gif&quot; alt=&quot;&quot; /&gt;</code>
[[Category:Customizing SMF]]
Where <div class="codeheader">: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a></div><code>&#039;, $settings&#91;&#039;images_url&#039;], &#039;/&#039;, $context&#91;&#039;user&#039;]&#91;&#039;language&#039;], &#039;</code> points to your theme&#039;s images/english folder, if English is selected as user default language. This will give you the possibility of making another directory for a different language. So, you can have buttons for English and Dutch for example.
[[Category:SMF Themes]]
 
'''Next:''' [[http://docs.simplemachines.org/index.php?topic=223|" class="bbc_link">This is confusing... I just want to change something simple!]]
 
 
[[Category:Staging]]

Latest revision as of 17:23, 18 January 2014

To give your Theme a unique look, you may need to modify/add your own graphics to it. The easiest way to add/modify your own graphics is by copying the images directory from the SMF default theme to your new theme. Once done you can modify or add graphics to (in order of directories):

  • bbc - bulletin boards buttons which are used mainly in Post screens.
  • english - buttons used in forum's menu, Board index , message ..etc.
  • icons - icons used in various part of the forum.
  • post - icons used for posts.
  • topic - topics indication images.

Also the main directory (images) contains various images used in many places in your forum, such as your Theme thumbnail, messenger indicators, stars, etc.

You can call an image from your Theme by using:

<img src="', $settings['images_url'], '/smflogo.gif" alt="" />

where

', $settings['images_url'], '

points to your theme's images directory.

or by using:

<img src="', $settings['images_url'], '/', $context['user']['language'], 
'/userinfo.gif" alt="" />

Where

', $settings['images_url'], '/', $context['user']['language'], '

points to your theme's images/english directory, if English is selected as user default language. This will give you the possibility of making another directory for a different language. So, you can have buttons for English and Dutch for example.



Advertisement: