Theme Slots

Hi there,



I am wondering if someone could tell me with the slots in the themes.



I am looking to change the slots sizes and can not find the file to edit ?



any help would be greatly appreciated :)

Hi there,

I am wondering if someone could tell me with the slots in the themes.

I am looking to change the slots sizes and can not find the file to edit ?

any help would be greatly appreciated :slight_smile:

Here is the dev documentation for themes:

https://developer.mautic.org/#themes

if you’d like to know more about the topic. To answer your question directly it depends on what theme do you use. But if we take Mauve theme for example, in this line you can see that the div element will have width 4/12:

https://github.com/mautic/mautic/blob/1.2.0/themes/Mauve/html/page.html.php#L34

It uses Bootstrap grid system:

http://getbootstrap.com/css/#grid

So if you for example want to make the div element width not 1/3 of the page, but 1/2 of the page, youd’ have to change the class name from col-md-4 to col-md-6.