I need to be able to format a list on a wiki page as a checklist.
I used to do this before 4.x by using the square style of list - text and defining some custom CSS that changed the list-style-image for ul.alternate:
/* show checkbox when - bullets are used (for checklists) */ div.wiki-content ul.alternate { list-style-image: url(/download/attachments/57802802/checkbox.png); }
Since 4.0 these lists no longer use a CSS class but have list-style-type: square hard-wired into the HTML.
Is there a way to change the format of a list in 4.x?
Thanks but the above CSS will apply to all <ul> lists, whereas I only want to show a checklist when people use the square bullet style. They still need to be able to use round bullets normally.
You can do this by entering the following CSS code in your Custom HTML >> At beginning of the BODY. Custom HTML can be found in your Confluence Administration console:
<style> div.wiki-content ul { list-style-image: url(/images/logo/confluence_48_trans.png) !important; } </style>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, that icon was just a quick test of mine. You can change the icon URL accordingly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sure, you still can use CSS, you just either have to edit Confluence's CSS directly or apply styles that override the defaults. To do the latter, go to the Site Admin section and click "Stylesheet" under Look and Feel.
Add any overrides you want, but just be sure to put "!important" before the semicolon. For example:
myCustomStyle {
list-style-image: url(/download/attachments/57802802/checkbox.png) !important;
}
You would then add your UL in an HTML macro on the Confluence page, and wrap it in a DIV tag that defines its class as myCustomStyle.
hth,
matt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.