Using the "Emplode" theme, and would like to add my logo to the upper left of the screen, or at least somewhere near the company name "Therapy Playground".
Or actually replace Therapy Playground with my logo.
The site title appears within a DIV with an ID of site_title
In your CSS file, you can do something like:
div#site_title {
background: url(images/logo.png) top left no-repeat;
text-padding: -9000px;
}
This will use images/logo.png as the logo and hide the text within the title.
I haven't used the Emplode theme, but using the default theme you edit the header from...
Dashboard
Scrapbook
Global Scrapbook
In the default theme there is an entry for "My_Site_Name" Click the edit link - I edited that and replaced the text with an image and it works - easy when you know how! <g>
Don't know if the same steps apply to Emplode though?
Hey thanks, that worked in Emplode too. I took it out though because my logo doesn't match the theme yet, but yeah, that worked great what you said. Thanks.
Heres a more complex solution but with some work needed. open up an ftp browser- if you don't have one use a web based one like netftp. enter your login credentials and navigate to where concrete5 is located. this will be something like public_html and then either right there or in a subfolder called concrete5. once in the concrete5 directory, click on themes, then emplode. go to elements, then header.php. and edit header.php look for a block of php like this
If that block isn't in there, open up default.php or the page type you want to change, and follow the same steps. you'll have to do this separately for each page type you want to modify if you have to do this.
In your CSS file, you can do something like:
div#site_title {
background: url(images/logo.png) top left no-repeat;
text-padding: -9000px;
}
This will use images/logo.png as the logo and hide the text within the title.