Hi Rika, First, I would move the style tag into its own CSS tiddler (you are currently actually generating a <style> tag for EVERY result of your $list filter).
Copy just the internal CSS (not the <style> tags) into a tiddler (any title is fine), and tag it with $:/tags/Stylesheet. When TW refreshes (instantly upon tiddler save), it places all CSS with that tag in the page header. (There are ways to make the CSS dynamic with wiki-text, but that should be explored later.) Then, once, you have the List and the CSS in separate tiddlers, you can edit each seperately, and use the browser's Dev Tools to target your CSS updates. Best, Joshua F On Wednesday, March 31, 2021 at 4:11:54 PM UTC-7 [email protected] wrote: > I'm using the Public Sidebar plugin (http://publicsidebar.tiddlyspot.com/) > which is fantastic, but I can't get the margins right. > > Can someone please so kindly take a look at my website and help with the > margins? I'd also like to fix the issue with text expanding past the > screen. Much appreciated!! > > Here's the code I currently have: > <$set name="loc" value=<<location 'hostname'>>> > <$list filter="[<loc>]+[prefix[www.rikasukenik.com]]"> > <style> > .tc-sidebar-scrollable{visibility:visible;} > .tc-page-controls {display:none;} > .tc-sidebar-lists{visibility:hidden; display:inline; height: 100px;} > .tc-search{visibility:visible;} > .tc-search-results{visibility:visible;} > .public {visibility:visible;} > > </style> > </$list> > </$set> > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c612e0c5-610f-4fc8-91f9-49c948cf0221n%40googlegroups.com.

