How to remove the Psiphon logo from the login page?

Asked by Peter

One of the strongest aspect of Psiphon is that: it can be used at public places without special client, for example, even at public interent cafe in internet censored countries with mobile client software.

However, if the user visits psiphon login page with a firefox browser, the size of psiphon logo is huge. It will alert the internet cafe police. The user's situation is less safe.

I want to know how to remove the psiphon logo from the main login page? At least, keep the logo size to a minimum.

Regards.

Question information

Language:
English Edit question
Status:
Solved
For:
psiphon Edit question
Assignee:
No assignee Edit question
Solved by:
e.fryntov
Solved:
Last query:
Last reply:
Revision history for this message
Best e.fryntov (e-fryntov) said :
#1

Hey Peter, what you can do is to put an estra css rule in the www/css/psistyle.css. Find this selector at line 174:

pre.psiphonlogo_html{

    color: #FEFEFE;
    font-size: 2px;
    line-height: 1px;
    letter-spacing: 0px;
    font-weight: normal;
    font-family: "courier new";
}

and add the "display:none" rule after "font-family:.." line so the while ruleset reads
pre.psiphonlogo_html{

    color: #FEFEFE;
    font-size: 2px;
    line-height: 1px;
    letter-spacing: 0px;
    font-weight: normal;
    font-family: "courier new";
   display:none;
}

That should do it

Revision history for this message
Peter (peterpn) said :
#2

Thanks e.fryntov, that solved my question.