JustCarmen / webtrees-theme-justlight

JustLight theme for webtrees
http://justcarmen.nl
GNU General Public License v3.0
31 stars 7 forks source link

Custom Logo #155

Closed durangod closed 4 months ago

durangod commented 9 months ago

Hello, i was curious if you had any plans to add a custom logo to your theme options? If not, what is the easiest way to mod your theme to add a custom logo?

PS i did search for the term logo in the closed issues and did not find anything.

Thank you for your time. :)

I did figure out this much... using custom css module

` .wt-header-wrapper .jc-header-content-start .wt-site-logo { display: block; }

`

that does add the logo but it puts the Large text text next to the logo

LOGO Our Family Tree

And the Title needs to go under the logo. So for now i just did display none on the title

` .wt-site-title { display: none; }

`

JustCarmen commented 7 months ago

Hi, I think you need to add flex-column to the outer div, like this:

.jc-header-content-start { flex-direction: column!important; }