Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[Solved] How to remove the door graphic?

keeshakeesha
edited October 2012 in Vanilla 2.0 - 2.8

Hello,
Id like to remove the door graphic and keep the original signout link, but i failed to find the .png in any of the files even in custom.css.

Thank you in advance :)

Comments

  • nvm. i've managed to find the neccessary code snippets.

  • AnonymooseAnonymoose ✭✭
    edited October 2012

    @keesha said:
    nvm. i've managed to find the neccessary code snippets.

    If you are going to post about it, please share what you found for others.

  • I want this! Why dont shared!! Fuuuuu. I deleted the Door icon.png but not is the best way.. Cause i need replace for "exit".

  • change this in default.master.php in the /Noise/views/default.master.php

    from
    
     $this->Menu->AddLink('SignOut', '<img title="'.T('SignOut').'" src="'.Url('/').'themes/Noise/design/images/logout.png"/>', SignOutUrl(), FALSE, array('class' => 'NonTab SignOut'));
    
    to
    
    $this->Menu->AddLink('SignOut',T('SignOut'), SignOutUrl(), FALSE, array('class' => 'NonTab SignOut'));
    

    then in definitions in locale.php

    $Definition["SignOut"] = "Cierra La Puerta";

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Fixed! Thanks Again @peregrine !!

Sign In or Register to comment.