Banners display Issue

0
Hi,

can you please tell me how can I display one banner on one row on the "Marketing" page?

As they are now banners are displayed 2 in one row.

thanks!

Accepted Answer

Joan Vilà
Joan Vilà
Offline
Tuesday, April 19 2016, 12:02 PM - #Permalink
0
Hello Michael,

To do this you need to change some css.

If you go to components/com_affiliatetracker/assets/styles.css. At line 94 you should replace this code:


.card-at-columns {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
}


For this one:


.card-at-columns {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
}
The reply is currently minimized Show
Responses (0)
  • There are no replies here yet.
Your Reply