[xwiki-users] Use FontAwesome in Spoiler Macro title

2013-10-04 Thread Hamster
I would like to use an icon from the Font Awesome Icon Macro in the title of a Spoiler Macro But I can't get it right :-( Is this possible?

[xwiki-users] Ability To Parse Text To Create Links

2013-10-04 Thread Keith Davis
Can someone tell me what it would take (generally) to add code that would parse text for a specific pattern and convert it to a hyperlink? I'm fluent in PHP and C#, and know a little Java, but have done zero custom work with XWiki. I've created this type of parser for other systems. What I woul

Re: [xwiki-users] Change width of panel

2013-10-04 Thread Hamster
Ecaterina Moraru (Valica) wrote > #body.hideleft #contentcolumn .main { > margin: 0 400px 0 0; > } Thanks a million Caty! That was exactly what I was looking for! I did already find the ".panel"-section to change the width of the panel. I will remove the cascading items (as I won't change/overr

Re: [xwiki-users] Change width of panel

2013-10-04 Thread Ecaterina Moraru (Valica)
Hi, #rightPanels { float: right; margin: 0 0 0 -420px; width: 420px; } #body.hideleft #contentcolumn .main { margin: 0 400px 0 0; } .panel { display: block; width: 390px; } The values are calculated considering the margins. You can remove the float and the display since they are cas