phuongvyhanghieu Posted September 14, 2014 Share Posted September 14, 2014 (edited) I try to insert some texts or info after the breadcrumb. Please help. PS: 1.4.6.2 Original breadcrum tpl <!-- Breadcrumb --> {if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if} <div class="breadcrumb"> <a href="{$base_dir}" title="{l s='return to'} {l s='Home'}">{l s='Home'}</a>{if isset($path) AND $path}<span class="navigation-pipe">{$navigationPipe|escape:html:'UTF-8'}</span>{if !$path|strpos:'span'}<span class="navigation_page">{$path}</span>{else}{$path}{/if}{/if} </div> <!-- /Breadcrumb --> Can I insert some texts or info like below? Please give me the advices. Thanks in advance. <!-- Breadcrumb --> {if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if} <div class="breadcrumb"> <a href="{$base_dir}" title="{l s='return to'} {l s='Home'}">{l s='Home'}</a>{if isset($path) AND $path}<span class="navigation-pipe">{$navigationPipe|escape:html:'UTF-8'}</span>{if !$path|strpos:'span'}<span class="navigation_page">{$path}</span>{else}{$path}{/if}{/if} <p>{l s='Some texts or info here?'}</p> </div> <!-- /Breadcrumb --> Edited September 14, 2014 by phuongvyhanghieu (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 14, 2014 Share Posted September 14, 2014 so, you used this code, what was the effect? Link to comment Share on other sites More sharing options...
phuongvyhanghieu Posted September 14, 2014 Author Share Posted September 14, 2014 (edited) Hi Vekia, Thank you very much for your quick response. I used the above code and the texts and info go to another line, not the same line with breadcrum. Therefore, I tried to use the below code, the text and info is the same line with breadcrum. <!-- Breadcrumb --> {if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if} <div class="breadcrumb"> <a href="{$base_dir}" title="{l s='return to'} {l s='Home'}">{l s='Home'}</a>{if isset($path) AND $path}<span class="navigation-pipe">{$navigationPipe|escape:html:'UTF-8'}</span>{if !$path|strpos:'span'}<span class="navigation_page">{$path}</span>{else}{$path}{/if}{/if} <span class="navigation-pipe">{l s='Some texts or info here?'}</span> </div> <!-- /Breadcrumb --> The problems: the text fonts are smaller than the breadcrum fonts and the space between the breadcrum and the texts are so narrow. I would like the text fonts are larger and wider space between breadcrum and the text fonts. Please give me the right instructions so I can use a proper way. Hopefully you can help me that. Thank you very much in advance. Please see the attached files Phuongvyhanghieu Edited September 14, 2014 by phuongvyhanghieu (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 15, 2014 Share Posted September 15, 2014 this is not default theme, right? due to this, can you please share direct link to page where it is possible to check how modified breadcrumb looks like ? (it's necessary to inspect css styles code) Link to comment Share on other sites More sharing options...
phuongvyhanghieu Posted September 17, 2014 Author Share Posted September 17, 2014 Hi Vekia, Thank you for your help. Here is the link http://phuongvyhanghieu.net/6-abercrombie-nam Link to comment Share on other sites More sharing options...
vekia Posted September 17, 2014 Share Posted September 17, 2014 you removed code that you applied there? i don't see it, just standard breadcrumb Link to comment Share on other sites More sharing options...
Recommended Posts