MyBB Community Forums

Full Version: How To Change Its Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How Can I Change The Color Of Areas*? Marked With Red ..!!

[Image: 34r9lrs.jpg]
For the main box you will have to edit core files in your servers ftp. I can't specifically remember what its under but I do remember that its underr jscripts in the core files.
Well, I'm nab and may be would not be able to reach exact point ..!!
But still thanks for your help ..!!

+1 Rep For Your Support.
Go to newthread template under Newthread templates:

Find:

{$loginbox}
<tr>
<td class="trow2" width="20%"><strong>{$lang->thread_subject}</strong></td>
<td class="trow2">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
</tr>

Replace with:

{$loginbox}
<tr>
<td class="trow2" width="20%"><strong>{$lang->thread_subject}</strong></td>
<td class="trow3">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
</tr>

Then add the following to the bottom of your global.css

.trow3 {
background: #fff;
border: 1px solid;
border-color: #fff #ddd #ddd #fff;
}

Edit: If you're having difficulty finding the above because your theme has a modified template, then the key part to note to change is <td class="trow2"> highlighted above.
Sorry Ashley Bro, You Suggested Me Wrong, You Suggested Me About The Area Outside The Subject Box, I mean To Change The Subject Box Color.
+ The Text Or Thread Box Below Box In Pic ..!!

But Still You Tried To Help, Thanks For Your Help +1 Rep ..!! Smile
I think the settings for that box is contained in:

\jscripts\sceditor\textarea_styles\jquery.sceditor.default.css

but not 100% sure.
lol, I did my experiment and did that after failure now my forums are not loading ..!!
I did.

{$loginbox}
<tr>
<td class="trow2" width="20%"><strong>{$lang->thread_subject}</strong></td>
<td class="trow3">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
</tr>

Then add the following to the bottom of your global.css

.trow2 {
background: #fff;
border: 1px solid;
border-color: #fff #ddd #ddd #fff;
}

and when I clicked save I got this error and its continuous now ..!! now Idk its hostinf error or my mistake error Toungue
P.S: CPanel is working fine Smile

This site can’t be reached

mysite.com refused to connect.
Go to http://mysite.com/
Search Google for  my site
ERR_CONNECTION_REFUSED
The black box is input.textbox in global.css

The editor you need to edit core files in mybb root/jscripts/sceditor/
What i gave was a new class definition called trow3 - that you should add to global.css. If you add it like you did with trow2 it will break your site, so change it to trow3 (the part that you added).
@Ashley
How Can I Change It Bro?
When even I can't access ACP, but yes is there anyway to fix it from cpanel? if there is please let me know.

And Thanks Andrew +1 Rep For You Too ^_^ Toungue
Pages: 1 2