mchat display

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

mchat display

Post by iheartbreakz »

Image

i want to change the color of the text and the header of mchat? how do i do that :(

Re: mchat display

Post by Inner Circle »

go to root/mchat/mchat_prosilver.css/mchat_subsilver2.css (depending on your style)

Re: mchat display

Post by iheartbreakz »

i have 2 styles i want it different for both

Re: mchat display

Post by iheartbreakz »

and also its using cellpic3.gif background image which is not in the css

Re: mchat display

Post by Steve »

iheartbreakz » 14 Apr 2010, 23:48 wrote:i have 2 styles i want it different for both
Create your own css file copy/ reproduce the subsilver2.css file edit to your liking, rename it for eg, mchat_new.css
upload it to the mchat folder
in the overall_header.html for the style subsilver2 based
find:

Code: Select all

<link rel="stylesheet" href="{ROOT_PATH}mchat/mchat_subsilver2.css" type="text/css" />
replace with:

Code: Select all

<link rel="stylesheet" href="{ROOT_PATH}mchat/mchat_new.css" type="text/css" />
refresh template and your web browser for the other subsilver2 based style

Re: mchat display

Post by iheartbreakz »

problem still not solved dunno how to replace the row image :(

Re: mchat display

Post by Steve »

in the subsilver2/template/mchat_body.html
find:

Code: Select all

<td class="cat"><!-- IF MCHAT_ARCHIVE_MODE --><h4>{L_MCHAT_ARCHIVE_PAGE}</h4><!-- ELSE --><h4>{L_MCHAT_TITLE}</h4><!-- ENDIF --></td>
this is the important part:

Code: Select all

<td class="cat">
change it to a differnet class for eg:

Code: Select all

<td class="row1"
or leave it empty:

Code: Select all

<td>
with out having the style installed its hard to fix ;)

Re: mchat display

Post by iheartbreakz »

It worked! Thanks :D

But ONE last problem

Image

i want the border to be rounded of the mchat like the forum categories how can i do that :(

right now it looks like this

Image

this is the code used in category

Code: Select all

		<td><img src="{T_THEME_PATH}/images/cellpic4_l.png" width="17" height="28" alt="" /></td>
		<td background="{T_THEME_PATH}/images/cellpic4_m.png" width="100%" height="28"><!-- IF MCHAT_ARCHIVE_MODE --><h4>{L_MCHAT_ARCHIVE_PAGE}</h4><!-- ELSE --><h4>{L_MCHAT_TITLE}</h4><!-- ENDIF --></td>
		<td><img src="{T_THEME_PATH}/images/cellpic4_r.png" width="16" height="28" alt="" /></td>

Re: mchat display

Post by cisco007 »

try to use the code tags when posting code!

Re: mchat display

Post by Steve »

link to style download please....