diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-07-08 05:13:26 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-07-08 05:13:26 +0000 |
commit | 49ef94b7774ca2faf084372ecd9c0fcec0905ce6 (patch) | |
tree | aa819fd499877d3539715a7ee400284fdca57453 | |
parent | 96407d5f72d4abbfe710c827de756ef989ede0b0 (diff) |
fix display of menubar tag cloud with IE8 (it was overflowing to the right outside the menubar)
git-svn-id: http://piwigo.org/svn/branches/2.0@3545 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | template/yoga/menubar_tags.tpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/template/yoga/menubar_tags.tpl b/template/yoga/menubar_tags.tpl index d7072d82d..79353e21d 100644 --- a/template/yoga/menubar_tags.tpl +++ b/template/yoga/menubar_tags.tpl @@ -10,8 +10,7 @@ <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" /> </a> {/if} - <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See elements linked to this tag only'|@translate}">{$tag.name}</a> - </span> + <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See elements linked to this tag only'|@translate}">{$tag.name}</a>{* there should be no space between end of a and span elements to avoid IE8 bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=366567 *}</span> {/foreach} </div> </dd> |