XFileSharing Pro - How to change "Message Sent Successfully"

Message
Author
commanderp
Posts: 8
Joined: Jun 14, 2014 3:26 pm

How to change "Message Sent Successfully"

#1 Postby commanderp » Jun 22, 2014 7:52 am

Hello Guys

I've searched the forum and can't find the answer I'm looking for.

I would like to know in which file "Message sent successfully" is?

I want to modify the Css for this message and cannot find it anywhere.

Would really appreciate any help.

Thanks!

admin
Site Admin
Posts: 1839
Joined: Mar 22, 2006 12:32 pm

#2 Postby admin » Jun 23, 2014 5:44 am

Code: Select all

$ grep -R "Message sent successfully" *

cgi-bin/index.cgi:   $ses->redirect("$c->{site_url}/?msg=Message sent successfully");

Steve9e8
Posts: 81
Joined: Jun 19, 2014 11:27 am

#3 Postby Steve9e8 » Mar 12, 2015 6:57 pm

@admin

How to change the color and font size of that term please ?

AnotherIdiot
Posts: 101
Joined: Aug 23, 2014 2:59 pm

#4 Postby AnotherIdiot » Apr 16, 2015 7:33 am

First send a message to make it appear on screen, then using firebug, a firefox add-on you can check anything on screen. It will tell you which lines the css are on to change size and colour

Steve9e8
Posts: 81
Joined: Jun 19, 2014 11:27 am

#5 Postby Steve9e8 » Apr 16, 2015 8:29 pm

AnotherIdiot wrote:First send a message to make it appear on screen, then using firebug, a firefox add-on you can check anything on screen. It will tell you which lines the css are on to change size and colour
Thank you, it's really a very useful addon, I just tried it...

For any mate who might come to this topic later for the same issue :

to edit ( message sent succesfully ) :

css code :

Code: Select all

.ok{color:#...,font-size:....}
html code :

Go to ( upload_form.html ) and edit the code :

Code: Select all

<TMPL_IF msg><font class="ok"><TMPL_VAR msg></font><br><br></TMPL_IF>