hi,this is my site: www.justincanhelpyou.com, now i want to make this site to be bilingual by adding a link inside of the header,
just like this cms forum has flags on the top right of the page or how can i add a link inside of the breadcrumbs that is right aligned withou line break, you can going to view my site and see what i mean, thanks and i love cmsms:-)
Want to add a link inside the page header or breadcrumbs
Re: Want to add a link inside the page header or breadcrumbs
You may want to look into CMS Made Simple MLE...
Re: Want to add a link inside the page header or breadcrumbs
thanks mark,i don't know what exactly is the MLE and searched that it's like MultiLingual or something, but i feel i don't needmark wrote: You may want to look into CMS Made Simple MLE...
it,all works fine i just need to insert a link inside of the breadscrumbs and make it right aligned,this link will direct to my chinese page for sure, my problem is if i directly insert a html tag into the template page it will be very close to the breadscrumbs so i tried to use a or and right aligned but that will cause a new line break as you can see from my website,ok i just paste the code here you will see what i mean

{* Start Breadcrumbs *}
{breadcrumbs starttext='You are here' root='Home' delimiter='»'}
中文
{* End Breadcrumbs *}
please help me,thanks!!
Re: Want to add a link inside the page header or breadcrumbs
try this:
But if you want your website to be multilingual (ie. chinese and english), you should look at MLE as Mark sugested.
Code: Select all
<span class="breadcrumbs">{breadcrumbs starttext='You are here' root='Home' delimiter='»'}</span>
<span align="right"><a href="http://www.justincanhelpyou.com/cms_cn">中文</a></span>
Re: Want to add a link inside the page header or breadcrumbs
If you want them to line up you will need to wrap the breadcrumb in another div and give it a width then give your next call a width so they don't bump each other and they should line up...