Logo and Text Together

Hi Guys,
I can’t find the exact answer to my question - sorry if I’ve missed it somewhere.

In the BB Child Theme, in “Customize/Header/Header Logo”, I don’t see a way of having a logo to the left of text, while keeping the text itself large (as in “Heading 1”, for example). If I choose “Image” the text in the header drops down to about 14 pixels or thereabouts.

Do you have a solution for how I can resolve this please?

Thanks Guys - much appreciated.

Hey David,

The options there should only be either an image logo, or a text logo. You can have both. Is that what you’re trying to do? Do you think you can share the URL or the site so we can check?

Ben

[Content Hidden]

Hey David,

Sorry, I meant to say you can’t have both. You can only either have a logo image or logo text, not both.

If you want, you can add a tagline part on the logo but it requires custom coding. Someone documented the process on the thread below.
http://forum.wpbeaverbuilder.com/support/q/adding-a-second-line-tag-line-to-header

There’s also a feature request you might just want to vote for it.
https://wpbeaverbuilder.uservoice.com/forums/270594-general/suggestions/8188626-add-option-for-tagline-in-the-header-on-bb-theme-c

Ben

Hi Ben,
On the same subject, after some fiddling about, I’ve been able to add a background image using Customizer/Header/Header Style/Background Image/Select Image.

You can see it here : http://838collinsstreetmelbourne.mypressonline.com/

However, when the pages adjust for mobile, the image (logo) appears behind the site title.

Is there a way to stop the header background image appearing for smaller screen sizes. That would fix my problem for the moment.

Thanks Ben

Hey David,

Try adding the styling below.

@media (max-width: 767px) {
  .fl-page-header {
    background: none;
  }
}

Ben