Portal Engine Questions on portal engine and web parts.
Version 6.x > Portal Engine > How to add html <em> in cmsbreadcrumd View modes: 
User avatar
Member
Member
hungquang_itsyad-yahoo.com - 4/16/2013 7:42:04 AM
   
How to add html <em> in cmsbreadcrumd
Hi all,

I using cmsbreadcrumd to show link, html look like below.
But if using cmsbreadcrumd will not show <em></em> tag.
How to insert <em></em> when using cmsbreadcrumd, or have orther idea?
<div class="breadcrumb"><a href="#">Home</a><em></em><a href="#">Product</a><em></em><span>For Men</span></div>

Please tell me how to do.

Thank!

User avatar
Kentico Support
Kentico Support
kentico_janh - 4/16/2013 8:11:51 AM
   
RE:How to add html <em> in cmsbreadcrumd
Hello,

You need to setup your web part as below:
Breadcrumb separator: </em>SEPARATOR<em>
Content before: <em>
Content after: </em>

Best regards,
Jan Hermann

User avatar
Member
Member
hungquang_itsyad-yahoo.com - 4/17/2013 3:57:48 AM
   
RE:How to add html <em> in cmsbreadcrumd
Thank Jan Hermann.

Also with <em></em> when I using in cmsmenu or cmslismenu
<div id="nav">
<ul>
<li><a href="">Home<em></em></a></li>
<li><a href="">Abouts<em></em></a></li>
<li><a href="">News<em></em></a></li>
<li><a href="">Product<em></em></a></li>
<li><a href="">Contact<em></em></a></li>
</ul>
</div>

How can I have menu with <em></em> looked like structure above?

User avatar
Kentico Support
Kentico Support
kentico_janh - 4/17/2013 5:34:39 AM
   
RE:How to add html <em> in cmsbreadcrumd
Hello,

This is not possible since the structure is hardcoded, however you can implement any HTML markup for your menu using the hierarchical transformation:

How to build up a menu using the hierarchical transformation

Best regards,
Jan Hermann

User avatar
Member
Member
hungquang_itsyad-yahoo.com - 4/21/2013 8:10:19 PM
   
RE:How to add html <em> in cmsbreadcrumd
Hi, I don't understant how to do it. Can you have any detail example?

User avatar
Kentico Legend
Kentico Legend
Brenden Kehren - 4/17/2013 7:34:31 AM
   
RE:How to add html <em> in cmsbreadcrumd
You could take a look at this webpart in the Marketplace. It takes the standard format and places a tag you specify between the <a> tags. For instance if you specified "span", <a href="#">Your Link</a> would be <a href="#"><span>Your Link</span></a>.

The webpart solved an initial problem for me, I still have intentions to modify it so the user could specify a string with a macro to allow for flexibility like you are looking for although have run out of time. Since it isn't exactly what you need, you could modify it a bit to do what you'd like without too much problem I believe.

User avatar
Member
Member
hungquang_itsyad-yahoo.com - 4/21/2013 8:11:10 PM
   
RE:How to add html <em> in cmsbreadcrumd
Hi
I can using this webpart.
Thank you!