Great theme!

Is there anyway to include a larger logo, instead of the fixed rectangular size, so that when used it will replace the site name and slogan?

Thanks!

Comments

dddavis’s picture

Status: Active » Closed (fixed)
israelshmueli’s picture

I have seen you changed the status to "fixed", but in case someone else is in the same situation....

Usually we can set any theme not to show the Site Name and or Slogan.
It can be done via "TOGGLE DISPLAY" in the settings page of the theme.
In our case "admin/appearance/settings/fontfolio".

To display bigger logo we need to modify or override a.logo CSS rule . This is the link element that wraps logo image.
Inside fontfolio.css you can find:

a.logo {
  display: block;
  overflow: hidden;
  width: 93px;
}

This style rule actually "crops" the logo image if wider than 93px. We can disable the "cropping" by set a.logo width to "auto" .