Page 1 of 1

Ultima - Display Full Width of Screen

Posted: 24 Jun 2023, 22:19
by ruc
Hi,

What would be the best way to remove the margin / padding on the main layout section of Ultima? I would like my content to use up the full width rather than been centred in the middle. In the same way that say the California template does? https://www.primefaces.org/california-ng/#/

In comparison the Ultima templates has padding either side- https://www.primefaces.org/ultima-ng/#/

Kind regards

Andrew

Re: Ultima - Display Full Width of Screen

Posted: 31 Jul 2023, 11:31
by gucal
Hi,

Remove this code from responsive.css file.

Code: Select all

@media screen and (min-width: 1729px) {
     .layout-content {
         width: 1504px;
         margin-left: auto !important;
         margin-right: auto !important;
     }
}