A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
Hi,
I would like to place a text "You are here: " before my breadcrumb control, how is the best way to achieve this? I already placed it in the layout.master but the breadcrumb is set on the line below my text, how can I avoid this?
Thanks
Filip
The easiest way to do this is to use the CSS :before pseudo-element. Example:
.breadcrumbs:before { content: 'You are here: '; }
Hope this helps, Joe D.
Thanks for the fast reply, will give it a try.