How do i increase width 100% on desktop ??

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
tminh
Posts: 28
Joined: 2019-05-23 02:26

How do i increase width 100% on desktop ??

Post by tminh » 2019-06-03 09:39

How do i increase width 100% on desktop ??

from
<div class="row">
thanks

User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Re: How do i increase width 100% on desktop ??

Post by ronwill » 2019-06-13 13:51

If you mean change view like this (standard view) to show header, tables, detailed view full width as image below
width.jpg
width.jpg (79.8 KiB) Viewed 2523 times
then I've done this by simply adding </div> at top of in my hooks header extras file
- simple but works

Cheers,
Ron
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

tminh
Posts: 28
Joined: 2019-05-23 02:26

Re: How do i increase width 100% on desktop ??

Post by tminh » 2019-07-06 04:22

thank you i will try

mghielmi
Posts: 10
Joined: 2019-01-08 01:27

Re: How do i increase width 100% on desktop ??

Post by mghielmi » 2019-10-19 16:55

I think is better change CSS of bootstrap .container class.

ex.

Code: Select all

.container {
    width: 100% !important;
}
You need to check because there are different media query for this class.

Post Reply