Do you want to set logo dimensions via ThemeMagic?
First open thememagic.xml file on theme root folder and add these lines after any “</fieldset>” line:
<fieldset name="logo_dimensions" label="T3_LOGO_DIMENSIONS">
<field name="T3logoWidth" type="text" default="204px" class="input-small t3tm-dimension" label="T3_LOGO_WIDTH_LABEL" description="T3_LOGO_WIDTH_DESC" />
<field name="T3logoHeight" type="text" default="65px" class="input-small t3tm-dimension" label="T3_LOGO_HEIGHT_LABEL" description="T3_LOGO_HEIGHT_DESC" />
</fieldset>
and after that add/edit these lines to template language file (en-GB.tpl_t3_blank.ini) after “; Theme Magic” line and set labels:
; LOGO DIMENSIONS
T3_LOGO_DIMENSIONS ="Logo Dimensions"
T3_LOGO_WIDTH_LABEL ="Logo Width"
T3_LOGO_HEIGHT_LABEL ="Logo Height"
T3_LOGO_WIDTH_DESC ="Logo Width"
T3_LOGO_HEIGHT_DESC ="Logo Height"
If you find this post useful please click on “Thanks” 😉