MyBB Community Forums

Full Version: iGame 1.8.23 (Dark transparent skin)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey there,

does somebody know how to change those icons?

[attachment=34531]
(2015-06-30, 06:07 AM)Spaddl Wrote: [ -> ]hey there,

does somebody know how to change those icons?

here
http://community.mybb.com/thread-156711.html
(2015-06-30, 06:07 AM)Spaddl Wrote: [ -> ]hey there,

does somebody know how to change those icons?

Themes > iGame > thread_status.css

They are FontAwesome so you'll need to edit the f114 on this line.

content: "\f114";

Replace them with icons from here
http://fortawesome.github.io/Font-Awesome/cheatsheet/
How would i go about changing th color of the forum names and stuff like that EX. It starts out blue how can i change it to something like this http://prntscr.com/7t5grx
(2015-07-15, 10:29 PM)Whiteout Wrote: [ -> ]How would i go about changing th color of the forum names and stuff like that EX. It starts out blue how can i change it to something like this http://prntscr.com/7t5grx

Themes > Global.css look for these


a:link {
	color: #96361c;
	text-decoration: none;
}

a:visited {
	color: #96361c;
	text-decoration: none;
}

a:hover,
a:active {
	color: #fff;
	text-decoration: none;
}

Thank you
How do I change the background color/transparency of the forumdisplay?  I've recently added thread icons, and they're all .png with a 15,15,15 square background. I want to match the forumdisplay to 15,15,15 that way you can only see the icon and not the black square behind it. I've looked through global.css, but not too much luck.

http://www.dexterityrp.com/forum


I had it before, but unfortunately, something went horribly wrong with my site, and I had to complete delete and re-install the default theme and your theme, so I lost all of my edits.



For some reason all the text is outside of the boxes running straight down the page. If I remove the custom field names, it fits back inside the box. Is this possibly a styling issue?

Notice in the picture below how the boxes are very wide, and the text that should be in the table are running along the side of the page. How can this be fixed?

[Image: YqxjT1K.png]

Anyone who is having the above issue that is marked in red it's a simple fix. If you want the name of the custom profile field to show, and the text to stay in the box, make the following two template edits.

Templates >> [Theme] >> Member Templates >> member_profile_customfields

Find:
<col style="width: 100%;" />

Change to:
<col style="width: 30%;" />

This allows the text to fit inside the box.


Templates >> [Theme] >> Member Templates >> member_profile_customfields_field

Find:
<td class="{$bgcolor} scaleimages">{$customfieldval}</td>

Place this DIRECTLY ABOVE it:
<td class="{$bgcolor}"><strong>{$customfield['name']}:</strong></td>

This will show the name of the custom profile field.

Hope this helps some people out!  Big Grin Note: Still need support on the coloring issue.
For the forum icons it's because the plugin or edits you done for them it's added class="trow1" with the icons, remove the class and the background won't show.
Okay, I figured it out. I had to go into global.css and change the transparency on .trow 1,2,3,4 from 0.95 to 100. It's all figured out now!

(2015-02-13, 03:40 PM)iAndrew Wrote: [ -> ]Templates > Forum Display Templates > forumdisplay_threadlist

Look for this

<div class="float_right" style="margin-top: 4px;">
	{$newthread}
</div>
<br class="clear" />

Copy and paste this over everything below the above code

<br />
<div class="float_left">
	<div class="float_left">
		<dl class="thread_legend smalltext">
			<dd><span class="thread_status newfolder" title="{$lang->new_thread}">&nbsp;</span> {$lang->new_thread}</dd>
			<dd><span class="thread_status newhotfolder" title="{$lang->new_hot_thread}">&nbsp;</span> {$lang->new_hot_thread}</dd>
			<dd><span class="thread_status hotfolder" title="{$lang->hot_thread}">&nbsp;</span> {$lang->hot_thread}</dd>
		</dl>
	</div>
	<div class="float_left">
		<dl class="thread_legend smalltext">
			<dd><span class="thread_status folder" title="{$lang->no_new_thread}">&nbsp;</span> {$lang->no_new_thread}</dd>
			<dd><span class="thread_status dot_folder" title="{$lang->posts_by_you}">&nbsp;</span> {$lang->posts_by_you}</dd>
			<dd><span class="thread_status lockfolder" title="{$lang->locked_thread}">&nbsp;</span> {$lang->locked_thread}</dd>
		</dl>
	</div>
	<br class="clear" />
</div>
<div class="float_right" style="text-align: right;">
	{$inlinemod}
	{$searchforum}
	{$forumjump}
</div>
<br class="clear" />
{$inline_edit_js}


You'll have to edit each icon with the code above to match the staus icons

I'm trying to change these icons to the default MyBB ones, I already copied and pasted the code, but what exactly do you mean by edit each icon? How do I go about doing so?
Thanks man.