Topic: Showkase header logo [SOLVED]

Can we set the Back Button to be our Logo?
Or have the Logo be a link?

Re: Showkase header logo [SOLVED]

Sorry. I'm mixing up Juicebox and Showkase Forums.
I'm querying about the Showkase Logo

Re: Showkase header logo [SOLVED]

@said

You can your own logo image as your Showkase site header by doing the following:
(1) Upload your logo image to the Library ('Library -> Upload').
(2) Go to 'Site -> Customize Theme', click the 'Browse Library' button for the 'Site Header -> Site logo image URL' input and select the image you uploaded in Step #1 above.
You might also want to remove the 'Site -> Site Settings -> Site Header -> Site heading' text.

To make the logo image a link, enter the URL you'd like to use in the 'Site -> Site Settings -> Site Header -> Site header link' input.

Re: Showkase header logo [SOLVED]

Brilliant Steven. Thanks!

I'm noticing though that the logo image (222px wide) is not scaling sufficiently for smaller viewports. Is there a way to tweak this?

www.studiosaid.com/home/

Re: Showkase header logo [SOLVED]

The 220px size for the logo is the maximum scaled size in desktop view (in a wide browser window), determined by a percentage of the page width.
Try uploading a larger resolution image for your logo and it should be scaled larger in narrow viewports.

Re: Showkase header logo [SOLVED]

Thanks Steven,

I actually would like the logo to appear smaller in smaller viewports :-)
Is this possible to tweak?

Re: Showkase header logo [SOLVED]

If you want your header logo to be scaled smaller in narrow viewports, try adding something like the following to your '_themes/boma/css/custom.css' file:

@media only screen and (max-width: 768px) {
    .hgroup img {
        max-width: 80%;
    }
}

Hopefully this will help.

Re: Showkase header logo [SOLVED]

Sweet, Steven.
Thanks

Re: Showkase header logo [SOLVED]

You're welcome.
I'm glad it works for you. Thank you for letting me know.