Resolved - Add Logo to Header

Post Reply
nootkan
Sr. Bludit
Posts: 43
Joined: Tue Feb 14, 2017 4:59 pm

Been trying to figure out how to add a logo to the header of themes. Html doesn't seem to work. Can anyone help me?
Last edited by nootkan on Sat Apr 22, 2017 10:41 pm, edited 1 time in total.
iapplecenter
Jr. Bludit
Posts: 1
Joined: Fri Feb 17, 2017 11:17 pm

yes i agree because having logo make the website more professional 8-)
User avatar
daveX99
Jr. Bludit
Posts: 3
Joined: Thu Dec 22, 2016 3:33 am
Contact:

Hi, nootkan:

You may have figured this out already, but here is a little bit of info:

The trick is to figure out where the header is being generated - which may be different depending on the theme you are using.

For many (but not all) themes, there is a file called 'page.php' (in the bl-themes/[theme]/php directory), and that file will include a chunk of html/php wrapped in a <header> tag.

'Simple' way to figure it out is to look at the source html to see the structure and then search your theme's php files to see which file is outputting the header content. You should be able to edit that file to achieve what you want.

-dave.
User avatar
Torsten_Kelsch
Legend Bludit
Posts: 263
Joined: Thu Aug 27, 2015 10:24 pm
Location: Germany
Has thanked: 4 times
Been thanked: 2 times
Contact:

Could also be in index.php in the theme’s main directory – it depends on the theme. Look for something like

Code: Select all

<header>…</header>
or

Code: Select all

<div id="header>…</div>"
or something similar.
On Error GoTo Bed
nootkan
Sr. Bludit
Posts: 43
Joined: Tue Feb 14, 2017 4:59 pm

Thanks guys for your replies and sorry for the late response on my part. I was able to find what I needed inside the index.php file of the default theme and made my changes there.
Post Reply