XF 1.5 Use Text Based Logo

Edit template logo_block and comment out the the below or replace it with your text..
HTML:
                <img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />

Add some CSS for it in the EXTRA.css template
Code:
#logo a {
    font-size: 30px;
    font-family: arial;
    color: #a5cae4;
    text-decoration: none;
}
#logo a:hover {
    text-decoration: none;
}
 
Top Bottom