how to place my logo
Permalink
I've just started with C5 and already im stuck. All I want to do is replace the site name in the 'plain yougurt' template with our logo. It seems so simple, this must be the first thing users want to do but ive looked everywhere. The top block just does not seem to be editable ( or deletable) in the same way as other blocks? How can i make the block bigger and insert the logo?
The method here worked for me, and it only uses the UI, no need to open up directories and change code:
http://www.concrete5.org/community/forums/usage/changing-title-site...
Andrey
http://www.concrete5.org/community/forums/usage/changing-title-site...
Andrey
It work for me doing this...
i edit header.php and i found the code :
and then i put the code inside a "span" with the name nologo, ending as follow :
And then, in the file main.css down below of the #page #header section i add the following code
[code]
#page #header .nologo {display: none;}
/[code]
As someone comment, this is good for crawlers, but it's not visible who have sense. But I'm wondering if someone can do the very same with just CSS or in the "custom CSS" theme options (without messing with the files of the templates, ftp, upload, etc. Like someone said also, this is the first things people want to do when customizing a theme. Should be an easier way.
i edit header.php and i found the code :
and then i put the code inside a "span" with the name nologo, ending as follow :
And then, in the file main.css down below of the #page #header section i add the following code
[code]
#page #header .nologo {display: none;}
/[code]
As someone comment, this is good for crawlers, but it's not visible who have sense. But I'm wondering if someone can do the very same with just CSS or in the "custom CSS" theme options (without messing with the files of the templates, ftp, upload, etc. Like someone said also, this is the first things people want to do when customizing a theme. Should be an easier way.
http://www.smartwebprojects.net/concrete5-blog/15/how-to-use-logo-i...
Good Luck