Using a Logo/Image

Permalink
I want to use my logo/image instead of text for the website name. How is this possible?

 
frz replied on at Permalink Reply
frz
if you (or your local web freelancer) get into the theme files, this is rather easy to do. There's no way to do it through the dashboard right now. you can learn more about how themes work here:

http://www.concrete5.org/index.php?cID=2925...
tbahz replied on at Permalink Reply
I started looking through the directory structure and find it a bit convoluted.

Which Themes directory? There is one at the top level, one under conrete too
frz replied on at Permalink Reply
frz
sounds like you're running into the themes that ship with the core vs. the spot to add your own..

check out this part of the docs:
http://www.concrete5.org/index.php?cID=2925...
rutrem replied on at Permalink Reply
rutrem
i found how to remove the site title from the Header.
Just delete this line from the header.php
<h1 id="logo-text"><a href="<?php echo DIR_REL?>/"><?php echo SITE?></a></h1>
maximusbean replied on at Permalink Reply
maximusbean
this is the code for green salad, where do it edit this?

<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>

<!-- Site Header Content //-->
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />


<?php Loader::element('header_required'); ?>


</head>
<body>
maximusbean replied on at Permalink Reply
maximusbean
is that the problem I am having?

Thanks!
synlag replied on at Permalink Reply
synlag
...      
      <h1 id="logo"><a href="<?=DIR_REL?>/"><?=SITE?></a></h1>
...


you've to modify the

home.php
full.php
default.php

to:

<span id="logo"><a href="<?php echo DIR_REL ?>/"><img src="<?php echo $this->getThemePath()?>/images/logo.png" alt="logo" /></a></span>
maximusbean replied on at Permalink Reply
maximusbean
I have been trying to figure this out for days! Thanks so much for taking the time to answer, you have no idea how much I appreciate it!

Jeanne
peakay replied on at Permalink Reply
Hi there,

I am just now building a site in concrete and this really should be a basic default function. Just a toggle to use plain text or a logo file.

I am funding the standard template to serve our needs pretty well, but this logo issue stands in the way of keeping everything point and click.

Thanks for all your efforts on this product - it is awesome!