Hi,
I'd like to style the bullet list but only in the children macro.
I have lines of CSS in my space stylesheet that change ALL of the bulleted lists at the moment.
ul {
list-style-type: lower-greek;
list-style-image: url('xxxxx');
}
I'd like to apply this setting but only to my children macro.
Any ideas will be very much appreciated, as I have failed with my many attempts :(
Thank you so much : D
kind regards,
Damien.
Hi @[deleted] ,
try this CSS:
ul.childpages-macro.conf-macro.output-block { list-style-type: lower-greek; list-style-image: url(); }
works wonders, thank you very much
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I forgot to hide the URL, the answer could be useful to other people but could you please remove the URL I actually provided in the first place ?
tyvm again 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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
to give you an idea i was able to style other macro contents (thanks to the great community here) for instance ::
#com-atlassian-confluence .expand-control-text {
font-size:105%;
font-family: Arial, Helvetica, sans-serif;
border: 1px solid #FF0000;
border-radius: 12px 12px 12px 12px;
padding: 5px;
background: #F5F5F5;
color: #DC143C;
}
to style expand macro
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.