NetTalk Central

Author Topic: Sortable Browse Header CSS  (Read 4044 times)

kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Sortable Browse Header CSS
« on: April 21, 2009, 01:47:54 AM »
Hi All,

I have copied a firebug inspect of a sortable heading on my browse. I want to reduce the size of the font on just this browse but can't figure out where I can't call my own css for the "heading" in the templates.



a {tph.css (line 114)
color:#343A6D;
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:10px;
}
a {all.css (line 382)
color:#666666;
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:12px;
}
Inherited fromth#head_10
table.MyBrowseTable1 th {tph.css (line 649)
border-collapse:separate;
border-style:solid;
color:#343A6D;
font-size:10px;
font-weight:bold;
white-space:nowrap;
}
Inherited fromtable#GLLedgerInquiryBrowse_tbl.MyBrowseTable1
table.MyBrowseTable1 {tph.css (line 634)
border-spacing:0;
color:#333333;
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:10px;
}
Inherited fromdiv#glledgerinquirybrowse_glledgerinquiry_div.adiv
.adiv {all.css (line 840)
border-collapse:collapse;
}
Inherited fromtd
.FormTable td {all.css (line 475)
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
}
Inherited fromtable.FormTable
.FormTable {all.css (line 464)
border-collapse:collapse;
color:#333333;
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
text-align:left;
}
Inherited fromdiv#tabViewTab_GLLedgerInquiry_0.dhtmlgoodies_aTab
.dhtmlgoodies_aTab {all.css (line 996)
font-family:"Trebuchet MS","Lucida Sans Unicode",Arial,sans-serif;
}
Inherited fromdiv#glledgerinquiry_div.fdiv
.fdiv {all.css (line 832)
border-collapse:collapse;
}
Inherited frombody.PageBody
.PageBody {tph.css (line 514)
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
}
.PageBody {all.css (line 226)
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
}
body {all.css (line 388)
font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
font-size:11px;

bshields

  • Sr. Member
  • ****
  • Posts: 392
    • View Profile
    • Inhabit
    • Email
Re: Sortable Browse Header CSS
« Reply #1 on: April 21, 2009, 03:53:56 AM »
Hi Kevin,

In tph.css add:

table#GLLedgerInquiryBrowse_tbl.MyBrowseTable1 th a {
    font-size: 8px;
}

Regards
Bill

kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Re: Sortable Browse Header CSS
« Reply #2 on: April 21, 2009, 03:32:25 PM »
Thanks Bill - this is a big help. Most of the CSS stuff is pretty easy but ever now and then I just can't work out what to change. Your tip may also help with a couple of other things I have been stuck on.

Cheers,

Kev

bshields

  • Sr. Member
  • ****
  • Posts: 392
    • View Profile
    • Inhabit
    • Email
Re: Sortable Browse Header CSS
« Reply #3 on: April 24, 2009, 04:50:53 AM »
Hi Kev,

I know what you mean. Most of the time i seem to understand CSS but occasionally i'm at a complete loss and just have to keep guessing until i stumble over the answer.

Glad it helped.

Regards
Bill