Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Row diff font size and column heading diff colors
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Row diff font size and column heading diff colors
#46239
Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 0
Hi,

I have a table that will be connected to a database table that will return 3 data rows. Each row will have a different font size. Each column heading should have a different background color as well. Any ideas how to get this done. I'm using Joomla on godaddy.

Thanks
The administrator has disabled public write access.
 
#46241
Re:Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 748
Hello,

Could you send a link to a page where we can see the table?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#46242
Re:Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 0
Hi,

The first table at the top of the page is how we'd like it to look.


www.bzboledo.com/
The administrator has disabled public write access.
 
#46243
Re:Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 748
Could you provide a link to a page where we can see the table which you want to modify?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#46277
Re:Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 0
It's the 3rd table on the page www.bzboledo.com/. Right now I have it as a plain HTML table that's pulling data from a MySQL database.

Thanks
The administrator has disabled public write access.
 
#46283
Re:Row diff font size and column heading diff colors 10 Years, 7 Months ago Karma: 748
Add the following CSS rules to "CSS Styles" parameter in module settings:

Code:


{$id} THEAD TH
{
 font-size: 25px;
 color: #FFF;
 padding: 10px;
}

{$id} THEAD TH.ari-tbl-col-0
{
 background-color: purple;
}

{$id} THEAD TH.ari-tbl-col-1
{
 background-color: red;
}

{$id} THEAD TH.ari-tbl-col-2
{
 background-color: orange;
}

{$id} THEAD TH.ari-tbl-col-3
{
 background-color: blue;
}

{$id} THEAD TH.ari-tbl-col-4
{
 background-color: green;
}

{$id} TBODY TD
{
 color: green;
 padding: 5px;
}

{$id} TBODY TR.ari-tbl-row-0 TD
{
 font-size: 20px;
}

{$id} TBODY TR.ari-tbl-row-1 TD
{
 font-size: 16px;
}

{$id} TBODY TR.ari-tbl-row-2 TD
{
 font-size: 12px;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12