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.
A few simple tweaks...help!
Hey! OK….I’ve been an amateur Vanilla user for awhile. Now, I’m trying to do a simple bloggish thing with my homepage. Anyway…..there are 2 things I want to add/change: 1.) I just want to change the word “Discussions” into “Blog” or “News”
2.) I want to add a background around this area of the page….just not sure where to put the CSS…? It would be a simple vertical fade that descends down the page…
Heres the pic, & my page: http://mfnd.org
Thanks, Mars
0
This discussion has been closed.
Comments
$Context->Dictionary['Discussions'] = 'Discussions';
to your conf/language.php and just change 'Discussions'; to anything you want.
2- If you want to add a fade between the left panel and the content, look for this "#Content" in vanilla.css file and just add your image to it:
#Content {
background: url('yourimage') repeat-y left top;
}
#Content { background: #xxxxxx url('fade.png') repeat-x left top; }
The #xxxxxx colour should match the bottom colour of the fade.png file.