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.
Image in place of site title?
Hi, I'm using the organic theme, but i think this is a more general question: How can the site title be replaced with an image? Which file has the source? Thanks!
0
Comments
It is referenced to from vanilla.css in the same directory, how you change it is up to you, I only just started playing around with Vanilla yesterday. I'm pretty excited about it, it's soooo easy to use.
does anyone else have a solution?
<div id="Title"><a href="'.GetUrl($this->Context->Configuration, 'index.php').'">'.$this->Context->Configuration['BANNER_TITLE'].'</a></div>';
And replace it with this:
<div id="Title"><a href="YOUR_IMAGE"></a></div>';
and it did take away the text title like I wanted, but the logo image was not displayed (except as the background, which is where it usually is anyway).
I tired:
but that also didn't work. The logo is now displayed rather nicely, but it's not linkable. Any suggestions?
Thank you, as always, for your time, I really appreciate it.
<div id="Title"><a href="'.GetUrl($this->Context->Configuration, 'index.php').'"><img src="Your_image" /></a></div>';