Resize Logo / Header ProJam Light
Design and Skin Customization
Open your skins/jrProJam/header.tpl and find this:
<div id="main_logo">
{if jrCore_is_mobile_device()}
{jrCore_image id="mmt" skin="jrProJam" image="menu.png" alt="menu"}
{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="max-width:225px;max-height:48px;" custom="logo"}
{else}
<a href="{$jamroom_url}">{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="max-width:375px;max-height:80px;" custom="logo"}</a>
{/if}
</div>
and change it to this:
<div id="main_logo">
{if jrCore_is_mobile_device()}
{jrCore_image id="mmt" skin="jrProJamLight" image="menu.png" alt="menu"}
{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="min-height:148px;" custom="logo"}
{else}
<a href="{$jamroom_url}">{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="min-height:160px;" custom="logo"}</a>
{/if}
</div>
That is for both the PC header and mobile header.