MyBB Community Forums

Full Version: Changing some things need help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Ok so first off I want to change this.

[Image: Screenshot2012-03-11at55305AM.png]

to something like this were it has a picture instead of that blank earth.

[Image: Screenshot2012-03-11at55317AM.png]


Also how can I center this like the one below it.

[Image: Screenshot2012-03-11at60319AM.png]

To change the favicon, you could try changing the template. Go to your Admin CP. Click Themes & Templates -> Templates -> Default Templates (or the theme templates) -> Ungrouped Templates -> headerinclude.

Add this code to the bottom:
<link rel="icon" type="image/png" href="A_16x16_ICON.png">
The first question is a favicon in the XhomeX root directory.

The second is in forumdisplay_newthread. it is under a div class float_right so it looks like the the width of the div has changed.

Edited: I meant root directory. I found that even if the meta tag has the image url I was getting a server error looking for the image in root. I thought it had to be .ico
Mr Josh thanks i wondered where to put that myself
(2012-03-11, 01:07 PM)Mr Josh Wrote: [ -> ]To change the favicon, you could try changing the template. Go to your Admin CP. Click Themes & Templates -> Templates -> Default Templates (or the theme templates) -> Ungrouped Templates -> headerinclude.

Add this code to the bottom:
<link rel="icon" type="image/png" href="A_16x16_ICON.png">
It's still not working? here is my code I have in it.

<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$stylesheets}
<script type="text/javascript">
<!--
	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var imagepath = "{$theme['imgdir']}";
// -->
<link rel="icon" type="image/png" href="Jmod_crown.png">
</script>
{$newpmmsg}
have you refreshed the browser to clear the cache? do you have a URL for us to look at?

(2012-03-11, 08:15 PM)hagz Wrote: [ -> ]have you refreshed the browser to clear the cache? do you have a URL for us to look at?

Yea Url is RuneSforums.com
Take a look at this plugin: http://mods.mybb.com/view/simple-favicon

~ David
Wow thanks man! ^^
No problem Smile

~ David
Pages: 1 2