How can you insert an indentation in Confluence v4.0 with wiki markup which has to be used creating page templates?
Thanks. We solved this using code
# .wiki-content p, table.confluenceTable {
# margin-left: 30px;
# }
in space stylesheet. The code above affects paragraphs i.e. body text. Different headings can be indented similarly using code like
# .wiki-content h4 {
# margin-left: 20px;
# }
The HTML entity for a non-breaking space ( ) can be inserted into wiki markup content to generate significant white-space.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
this is described here: http://confluence.atlassian.com/display/DISC/Indent+User+Macro
Best regards
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.