Logo - How do I remove the simple machines logo: Difference between revisions From Online Manual

Jump to: navigation, search
mNo edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
The logo on the top right hand corner of the forum that reads ''Simple Machines'' by default, can be removed if desired, especially if you already have a logo for your site, and your forum is wrapped inside of your site.
The logo of the forum is ''Simple Machines'' by default:


Example:
[[file:logoremove.png]]
[[file:logoremove.png]]


Here's how you can remove the logo.
This logo can be removed or replaced with one of your own.


First, you will need a FTP program to download your <code>index.template.php</code> file with. The file can be found in the <theme_name> directory inside of the Themes directory. Then Locate and delete following code:
To replace the logo, go to ''Themes > default > images'' and replace smflogo.png with the image that you wish to use.
 
To remove the logo, follow the steps outlined below:
 
First, you will need an FTP program to download your <code>index.template.php</code> file. The file can be found in the <theme_name> directory inside the Themes directory. Locate and delete the following code:


===SMF 1.1.x (Core)===
===SMF 1.1.x (Core)===
{{code|1=&nbsp; &lt;td align="right" class="catbg"&gt;
{{code|1= <td align="right" class="catbg">
&lt;img src="', $settings['images_url'], '/smflogo.gif" style="margin: 2px;" alt="" /&gt;
<img src="', $settings['images_url'], '/smflogo.gif" style="margin: 2px;" alt="" />
&lt;/td&gt;}}
</td>}}


===SMF 2.0 (Curve)===
===SMF 2.0 (Curve)===
{{code|1=&lt;img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" /&gt;}}
{{code|1=<img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />}}


Upload the modified <code>index.template.php</code> over the existing one with your FTP program and your logo image in the forum header should no longer appear.
Upload the modified <code>index.template.php</code> with your FTP program and the logo image in the forum header should no longer appear.


'''Note:''' The code you must remove may vary from theme to theme. If you cannot find the same code as highlighted here, search for similar code and try to work with that or consult with the theme author for help with the particular theme you are trying to do this for.
'''Note:''' The code you must remove may vary from theme to theme. If you cannot find the same code as highlighted here, search for similar code and try to work with that or consult with the theme author for help with the particular theme you are trying to do this for.
[[category:FAQ]]
[[category:FAQ]]

Latest revision as of 15:22, 13 October 2015

The logo of the forum is Simple Machines by default:

Logoremove.png

This logo can be removed or replaced with one of your own.

To replace the logo, go to Themes > default > images and replace smflogo.png with the image that you wish to use.

To remove the logo, follow the steps outlined below:

First, you will need an FTP program to download your index.template.php file. The file can be found in the <theme_name> directory inside the Themes directory. Locate and delete the following code:

SMF 1.1.x (Core)


					<img src="', $settings['images_url'], '/smflogo.gif" style="margin: 2px;" alt="" />
				

SMF 2.0 (Curve)

<img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />

Upload the modified index.template.php with your FTP program and the logo image in the forum header should no longer appear.

Note: The code you must remove may vary from theme to theme. If you cannot find the same code as highlighted here, search for similar code and try to work with that or consult with the theme author for help with the particular theme you are trying to do this for.



Advertisement: