Good morning everyone.
I'm new to this forum. Excuse my English, you will surely find errors but I am translating with google translator.
I created an application with AppGini 5.30. Everything works and I am very happy but I have problems with the customization of the graphics on the home page. I wish I could change the color of the boxes on the home peace (if clicked those that allow me to open tables) and 'can not change the color of the first box and also the size. How do I change the color of the other box? I would like to apply a color to each box.
Can someone please help me?
Thanks in advance.
Have a nice day
-------
Buongiorno a tutti.
Sono nuovo di questo forum. Scusate il mio Inglese, sicuramente troverete degli errori ma sto traducendo con il traduttore google.
Ho creato un'applicazione con appgini 5.30. Funziona tutto e sono molto contento però ho problemi con la personalizzazione del la grafica della home page. Vorrei poter cambiare il colore dei box presenti nella home pace (quelli che se cliccati mi permettono di aprire le tabelle) E' possibile cambiare il colore del primo box ed anche la dimensione. Come faccio a cambiare il colore anche degli altri box ? Vorrei applicare un colore per ogni box.
Qualcuno può cortesemente aiutarmi ?
Grazie in anticipo.
Buona giornata
Change color boxes home page - Cambiare colore caselle home
-
- AppGini Super Hero
- Posts: 85
- Joined: 2014-06-14 03:08
- Location: India
- Contact:
Re: Change color boxes home page - Cambiare colore caselle h
Hi,
You can find the code related to buttons colours in home.php
other colors are
panel-primary
panel-success
panel-info
panel-warning
panel-danger
You can find the code related to buttons colours in home.php
Code: Select all
$block_classes = array(
'first' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-warning', // change this to change first block color
'link' => 'btn-warning'
),
'other' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-info', // change this to change other blocks color
'link' => 'btn-info'
)
);
panel-primary
panel-success
panel-info
panel-warning
panel-danger
Re: Change color boxes home page - Cambiare colore caselle h
Grazie 
Domani provo a cambiare colore e ti faccio sapere.
A presto.
Ciao.
Fabio

Domani provo a cambiare colore e ti faccio sapere.
A presto.
Ciao.
Fabio
Re: Change color boxes home page - Cambiare colore caselle h
hello, I tried to change the colors of the blocks. The procedure works but if I wanted to put 4 different colors? Now I could just change the color of the first block and the color of all the others together. I would however four different colors (for example, a block of red color, a green color block, a block of blue color, a block of yellow color). How can I do? Thanks in advance for the help ....
----
ciao, ho provato a cambiare i colori dei blocchi. La procedura funziona ma se volessi mettere 4 colori diversi ? Ora sono riuscito solo cambiare il colore del primo blocco ed il colore di tutti gli altri assieme. Vorrei però 4 colori diversi (per esempio un blocco di colore rosso, un blocco di colore verde, un blocco di colore blu, un blocco di colore giallo). Come posso fare ? Grazie in anticipo per l'aiuto....
----
ciao, ho provato a cambiare i colori dei blocchi. La procedura funziona ma se volessi mettere 4 colori diversi ? Ora sono riuscito solo cambiare il colore del primo blocco ed il colore di tutti gli altri assieme. Vorrei però 4 colori diversi (per esempio un blocco di colore rosso, un blocco di colore verde, un blocco di colore blu, un blocco di colore giallo). Come posso fare ? Grazie in anticipo per l'aiuto....
-
- AppGini Super Hero
- Posts: 85
- Joined: 2014-06-14 03:08
- Location: India
- Contact:
Re: Change color boxes home page - Cambiare colore caselle h
Hi,
You can do it but it needs extra bit of coding. The modifications has to be done in the same file as i mentioned earlier.
You can do it but it needs extra bit of coding. The modifications has to be done in the same file as i mentioned earlier.