• Payment Plugins Poll

    We need your feedback on the need for updated payment plugins. Please go here and give us your feedback.

  • Joomla 5.1

    For running J!5.1 you must install Fabrik 4.1
    See also Announcements

  • Subscription and download (Fabrik 4.1 for J!4.2+ and J!5.1) are working now

    See Announcement
    Please post subscription questions and issues here

    We have resolved the issue with the J! updater and this will be fixed in the next release.

Improving the Fabrik Admin interface

  • Views Views: 5,924
  • Last updated Last updated:
  • Tips for improving the effectiveness of the Fabrik admin interface.

    Compressing the Admin lists​

    If you would like to see more Elements or Groups etc. on your screen in the Fabrik Admin Lists, then with a small tweak to the CSS, some of the white-space between rows can be removed.

    CSS:
    /* Make admin Lists more compact */
    .table th,
    .table td {
    padding: 1px 8px;
    }

    input[type="radio"],
    input[type="checkbox"] {
    margin: 0;
    *margin-top: 0;
    margin-top: 1px \9;
    }

    Since we should not be making changes to the template's main css file (because these will be overwritten in a Joomla upgrade), these should ideally be put into a custom.css for your admin template. Thanks to a Joomla user the standard ISIS and Hathor templates now provide this. For earlier versions these templates do call a language-specific css file which you can use to store these changes. So, for example, if your own language is en-GB, then create an en-GB.css file in administrator/language/en-GB.
Back
Top