Jump to content

transparant logo problem HELP! lost my logo


Recommended Posts

Hi,

 

I'm trying to upload a transparant logo in the default theme. I tried several extensions jpg, gif, png but nothing seems to work. I uploaded te image to img folder and I edited header tpl like this, but now there's no image showing and I can't get the old image back. HELP?!

 

 

<!-- Header -->

<div id="header" class="grid_9 alpha omega">

<a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">

<img class="logo" "src=url(../img/logotransp.jpg) {$img_update_time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

 

</a>

Edited by Tahnee (see edit history)
Link to comment
Share on other sites

<img class="logo" "src=url(../img/logotransp.jpg) {$img_update_time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

 

structure of img tags are wrong! read more about img tag here: html img

 

 

try with this code:

 

<img class="logo" src="URL_TO_YOUR_IMAGE_WITH_HTTP" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

Link to comment
Share on other sites

The image shows like this (see picture) I can't figure out what the right url is the logo is in the /public_html/img folder and named logotransp.jpg.. I have it like this now:

 

<img class="logo" src="logotransp.jpg" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

 

If I change it to

 

<img class="logo" src="logo.jpg" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />

 

it does show the 'your logo here' image.

post-449238-0-94541100-1359979776_thumb.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...