Frameworks - boostrap or tailwindcss

Hi,

Is it possible to use frameworks in divhunt, e.g. boostrap or tailwindcss?

Not natively, but it’s possible.

Include the CDN in the custom code section and that will work on the website. For the builder, create new JS file (Plugin type) with following code:

if(data.mode === 'builder')
{
    $('head').append('<script src="https://cdn.tailwindcss.com"></script>');
}

This will load tailwind also inside the builder so you can see what you build.
The rest is the same, build stuff, and set classes, there won’t be autosuggestion, but if you learned most of the classes for tailwind, it should be possible.

I would suggest setting classes from settings panel.

image