Hi there, I was looking for some help with the <<actions>> macro. It seems to function perfectly for what I need except that I don't like that it always has to be an ugly bullet list. Is there anything I can do so that I can continue to use the macro, but remove the list formatting? I know very very little about CSS, so I wasn't sure what to search for, but I tried a whole bunch of googling and couldn't find an answer simple enough for my dumb brain so any help would be appreciated.
Ideally I'd like to remove the whole list thing entirely and just simply have the links one after the other in a normal paragraph. Is this doable?
Comments
To change what appears at the start of each list item you need to change the lists list-style-type attribute (info about attribute can be found here and here)
Add the following to your stylesheet passage: To change the list items so that they dont appear on seperate lines you need to change them from displaying as blocks to being inline, add the following to your stylesheet passage: Note: The above will effect all lists that appear within your story, if you want to restrict the CSS changes to only selected lists then you can wrap those lists in a <div> tag with a class attribute, and change the CSS selectors to reference that class instead of .passage.
Place the following in a passage: And the following within your style sheet passage: