For the complete documentation index, see llms.txt. This page is also available as Markdown.

Advance BBCode box on Milk theme

Problem

Some features of the Advance BBCode box extension (available separately) don't work in the Milk theme.

Cause

A z-index layering issue in Milk. The extension is working as intended, but hidden behind Milk's white background wrapper.

Solution

You can remedy the problem by following these steps:

Open: /styles/milk_v2/theme/common.css

Find:

.darken {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

Remove

position: fixed;

Save changes, then purge cache.

Last updated