Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How to remove "Vanilla" info located in the left column

edited June 2010 in Vanilla 1.0 Help
Hi all,
How does one remove the Vanilla advertising that appears on all the pages on the left:
"Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support."

I will provide credit to Vanilla but don't want it there....
Thanks,
bellobellam

Comments

  • Options
    THE TEXT THAT APPEARS ON THE LEFT IS:
    Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
  • Options
    No need to capitalize things ;)
  • Options
    mdrmdr
    edited June 2010
    Dykam: You tell him there is no need to capitalize and then you don't answer his question, a VERY simple one. Whatever.

    bellobellam:
    The best way to do this is through your css, so go into your themes folder, into the theme folder that you're using (the default is vanilla) then styles and you will find a folder called default, inside here should be a css file called "vanilla.css". Open this up in a text editor and search for "#AboutVanilla", you should probably find only three of them, one that looks like "#AboutVanilla{" and two others that look like "#AboutVanilla a", the ones that ends with "a" are simply for anchor tags, you can ignore those.

    You should see something like this:
    #AboutVanilla{margin:10px 0 0 0!important;border-top:1px solid #ccc;background-color:#f9f9f9;padding:3px 0 3px 0;text-align:center;color:#bbb!important;width:180px;}

    You should add a snippet of code right between the first "{" and "margin:", the code is:

    display:none;

    This makes it so that the Div called AboutVanilla doesn't display at all, so your result should look like this:

    #AboutVanilla{display:none;margin:10px 0 0 0!important;border-top:1px solid #ccc;background-color:#f9f9f9;padding:3px 0 3px 0;text-align:center;color:#bbb!important;width:180px;}

    Good luck!
  • Options
    Well thank you so much mdr for this great css editing tip & method. Your code is what i needed, it works. Quite simple. I will credit Vanilla elsewhere on the page.
    Really appreciated mdr!
    bellobellam
  • Options
    Whatever on the Dykam comment...
  • Options
    Awesome, just glad to be of assistance.
  • Options
    StashStash
    edited June 2010
    http://vanillaforums.org/addon/544/vanilla-powered-footer

    If you want it in the footer... Also useful if you want to see how to put it into your own theme...
  • Options
    Thanks for your help Stash. Will use it!
Sign In or Register to comment.