Author Topic: How can I change the font for a specific row?  (Read 2472 times)

stoodin

  • Pro Enterprise
  • Jr. Member
  • *
  • Posts: 85
    • View Profile
How can I change the font for a specific row?
« on: April 29, 2014, 12:40:33 am »
Hi,
I have 5 grids on one page and I want to change the font just on of of them.
I tried pq_rowcls:'pq-row-schedule' on a row with
tr.pq-row-schedule td
{
   font-size: 8px;
}

but that doesn't work.
I can't change it on div.pq-grid * because it impacts all other grids.
Can I specify something like #<grid_name> div.pq-grid * ???
Thanks a lot

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6265
    • View Profile
Re: How can I change the font for a specific row?
« Reply #1 on: May 02, 2014, 08:35:41 pm »
Did you try

#<grid id>  tr.pq-row-schedule > td
{
  font-size: 8px;
}