Skip to content

Advanced CSS snippets

Isaiah Billingsley edited this page Jan 14, 2024 · 2 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://jpillora.com/base64-encoder/