Skip to main content

Kiwi Injection Guide - Prestige - Inline Left Beside Size Title

Injection settings for the Prestige theme (v10.7.0) to place the Kiwi size chart inline left beside the size variant title. Requires Custom CSS.

Premium paid theme by Maestrooo (v10.7.0). Go to Styles & Settings → General Settings → Display to enter these settings.

Settings

  • Inject: End of

  • Selector type: CSS selector

  • Selector: variant-picker > fieldset:nth-of-type(2) > div.variant-picker__option-info

Custom CSS

Add to Advanced → Custom CSS:

variant-picker > fieldset:nth-of-type(2) .variant-picker__option-info {
    display: flex;
    justify-content: flex-start !important;
    gap: 8px;
}
variant-picker > fieldset:nth-of-type(2) .ks-chart-container {
    margin-left: 0 !important;
    width: auto !important;
}

nth-of-type(2) targets the second fieldset specifically — can break if the product template structure changes. Treat as store-specific.

Did this answer your question?