Skip to content

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

Center align text

#main { text-align: center; }

Bold folder text

#main .folder { font-weight: bold; }

Disable favicons

#main img { display: none; }

Disable all icons

#main .icon { display: none; }

Custom bookmark icon

#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

.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 */
}

Clone this wiki locally