I need the text on my mobile site to go smaller than it will allow me. Anyway I can accomplish this?

Hi there! I don’t think this is possible. Have you tried looking into smaller font types that you can upload? That may be a workaround.

I haven’t tried it myself, but this might work if you use a little bit of code:

import wixWindow from 'wix-window';

$w.onReady(function() {
    if (wixWindow.formFactor === "Mobile") {
        let myText = $w('#text1').text
        .then($w('#text1').html = `<h6 style ="font-size:8px;color:#000000">${myText}</h6>`);
    }
})