Hi Viga,
I assume you are talking about a Visforms >> Form Data menu item with the "Orientation" option on the "Form Data Display Options" tab set to "As List".
This is a view that you have yet to format yourself.
In order to make it possible for this view to be designed individually, we intentionally did not apply any formatting.
Because every formatting that we specify and that you don't like, you have to laboriously overwrite.
The HTML of the view is very well structured, so you can format it very well with your own CSS.
For example, all labels have the class "vfdvlabel".
With the CSS selector .visforms-data .vfdvlabel you can easily address and format all labels in this view.
E.g. with a margin on the right side:
Code:
.visforms-data .vfdvlabel {
margin-right: 20px;
}
But you can also give the label a specified width, if that suits your requirements better.
Put your CSS in a custom.css file in media/com_visforms/css directory.
This file can be created directly from the Joomla administration by going to the "Edit CSS" panel on the Visforms dashboard.
In the documentation you will find an article about working with custom CSS in Visforms:
docs.joomla-4.visforms.vi-solutions.de/e...orm-layout-with-css/
Regards,
Aicha