-
-
Notifications
You must be signed in to change notification settings - Fork 115
Advanced CSS snippets
Isaiah Billingsley edited this page Apr 6, 2026
·
3 revisions
For further customization, copy the following code snippets into Options > Advanced > Custom CSS
#main { text-align: center; }#main .folder { font-weight: bold; }#main img { display: none; }#main .icon { display: none; }#main a[href^="https://example.com"] img {
content: url("https://example.com/icon.png");
}Replace https://example.com with bookmark URL and https://example.com/icon.png with icon URL.
For local image file, convert to base64 URL with https://narcolepticinsomniac.github.io/base64-encoder/
.column > * {
background: rgba(0, 0, 0, 0.3); /* dark background, for light try rgba(255, 255, 255, 0.3) */
border-radius: 30px;
margin: 0 10px !important; /* column gap */
}