If you want to get rid of this image from your header and replace it with your logo, then you will need to change the css in your theme.
In the default theme(and some other themes), the css to change the header background can be found in
public/assets/themes/{theme_name}/stylesheets/general/constructions.css, line 34:
to the RELATIVE path to your image (the default header image is stored in public/assets/themes/{theme_name}/images/)
If you your logo was called mybanner.png, and it was stored in the theme's images folder, then you'd put the following:
url(../../images/mybanner.png)
If on the other hand you are wanting to add the logo next to the header text (The text which switches between your company name, the project name and 'Administration') then you will need to edit the following files:
line 24 of application\layouts\administration.php
line 23 of application\layouts\account.php
line 23 of application\layouts\dashboard.php
line 28 of application\layouts\project_website.php
to include the link to your image.
If you don't know how to link to your image, then read this
short answer, yes.
You need to it with the css and replace the header text with an image.
Do you mean, we have to edit the css, to add the logo image?
Any more detailed explanation would be a lot of help.
George Crewe
If you want to get rid of this image from your header and replace it with your logo, then you will need to change the css in your theme.
In the default theme(and some other themes), the css to change the header background can be found in
public/assets/themes/{theme_name}/stylesheets/general/constructions.css, line 34:
#wrapper {background:#FFFFFF url(../../images/layout/header.jpg) no-repeat scroll center top;
margin:0pt auto;
padding-top:10px;
text-align:center;
width:900px;
}
Change
url(../../images/layout/header.jpg)to the RELATIVE path to your image (the default header image is stored in public/assets/themes/{theme_name}/images/)
If you your logo was called mybanner.png, and it was stored in the theme's images folder, then you'd put the following:
url(../../images/mybanner.png)If on the other hand you are wanting to add the logo next to the header text (The text which switches between your company name, the project name and 'Administration') then you will need to edit the following files:
line 24 of application\layouts\administration.php
line 23 of application\layouts\account.php
line 23 of application\layouts\dashboard.php
line 28 of application\layouts\project_website.php
to include the link to your image.
If you don't know how to link to your image, then read this
Have a good day :),
Alex