In order to teach myself more about CSS, I've been working on an image-focused, personal project in TiddlyWiki5 to catalog my collection of card decks.
I've managed to use a combination of CSS and the Palette settings to customize the wiki theme, but I cannot completely remove the tiddler frame. I've managed to remove most of the frame, but a very thin line still shows up between tiddlers and on the right-hand side. In order to isolate which element is responsible for generating the frame, I used the "inspect" viewer.
Here's the weird thing: When I'm viewing the "inspect" panels, the frames utterly disappear and the wiki appears as I want it to appear. As soon as I close "inspect", the frames are back. None of the following CSS settings have worked:
/* To remove tiddler frame */
.tc-page-container {
border: rgba(255, 255, 255, 0);
}
.tc-page-view-classic {
border: rgba(255, 255, 255, 0);
}
.tc-tiddler-frame {
border: none; [Also tried making it transparent, no go]
padding: 10px;
margin: 0px;
}
.tc-story-river {
border: rgba(255, 255, 255, 0);
}
div.tc-sidebar-scrollable {
border: rgba(255, 255, 255, 0);
}
.tc-dropzone {
border: rgba(255, 255, 255, 0);
}
.story-backdrop {
border: rgba(255, 255, 255, 0);
}
I originally thought, "hey, it's so small and barely visible, why make it into a big issue?" But now that I can't seem to figure out how to change it, it's become a major problem for me to solve. I searched the TW Google Group forum and found a couple instances of frame manipulation, but they didn't fix it.