Center everything in the database?

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
reg216uk
Posts: 22
Joined: 2013-09-26 18:45

Center everything in the database?

Post by reg216uk » 2013-10-09 19:40

Hello I was wondering if someone could tell me how to center align everything in each cell?

AhmedBR
AppGini Super Hero
AppGini Super Hero
Posts: 327
Joined: 2013-09-19 10:23

Re: Center everything in the database?

Post by AhmedBR » 2013-10-10 11:42

You will need to change everything in your style.css to be:
text-center: center

For example your TableHeader would be like this:
text-align: center; <<<< was added

Code: Select all

.TableHeader {
    background-color: #E9E5D9;
    color: #000000;
    font-family: verdana,arial,tahoma;
    font-size: 12px;
    font-weight: bold;
    padding-right: 3px;
    text-align: center;
    text-decoration: none;
    text-indent: 3px;
You will have to repeat this to every element.
AppGini 22.14 - xampp 3.3.0 - PHP 7.4.30 - Summary reports - Calendar - Mass update - Messages - AppGiniHelper

reg216uk
Posts: 22
Joined: 2013-09-26 18:45

Re: Center everything in the database?

Post by reg216uk » 2013-10-10 20:42

I have done this and it hasnt set the data inside the cells to center.... any other idea?

reg216uk
Posts: 22
Joined: 2013-09-26 18:45

Re: Center everything in the database?

Post by reg216uk » 2013-10-11 13:13

Dont worry I got it working....my computer kept loading what was in cache :D

Post Reply