MyBB Community Forums

Full Version: Quote text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I change the text color that I show in this picuture, I marked it to show that it exists but it's white;


[Image: 00110UCUZ3FW2.jpg]
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Show Thread Templates > showthread_quickreply.

2. Find:

<span class="smalltext">
							{$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
						</span>

3. Replace with:

<span class="smalltext" style="color: #000;">
							{$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
						</span>
It is in your CSS, in the id "quickreply_multiquote"

ACP>Templates and Themes>your theme>edit global.css>

add

#quickreply_multiquote {
color:#000000;
}
Thanks!

What about the links? Image:

[Image: 002_P4QM1MBQZRT8C.jpg]

[Image: 001_P4QM1MBQZRT8C.jpg]
Add this to your global.css as well:

#quickreply_multiquote a {
color:#000000;
}
#quickreply_multiquote a {
color: blue;
}

for blue links, etc.

for black underlined links,

#quickreply_multiquote a {
color: #000000;
text-decoration:underline
}