PDA

View Full Version : Product & Services



RandyC
05-27-09, 03:12 PM
Alright so I am working on customization for my WHMCS and I found a small problem. I added a border to my active/inactive/terminated/pending useraccounttable and it doesnt seem to be working.. It works on the small squares at the bottom labeling it but not on the actual table. I also tried to manually do it using border html tags in the code itself but it did not work, any clue where I can find the problem?

http://img25.imageshack.us/img25/8560/74106566.jpg

Thanks,
Randy

siforek
05-27-09, 05:44 PM
If you want the border to go around the "status" squares then you have to place a border around their parent. So whatever that it is :)

sparky
05-27-09, 05:50 PM
Your using the portal theme by the looks. Open your style.css and add your border tags to the appropriate styles.
these ones are for the status squares at the bottom

.clientareatableactive{background-color:#DFFFE0}
.clientareatablepending{background-color:#EFEFEF}
.clientareatablesuspended{background-color:#FFF6CF}
.clientareatableterminated{background-color:#FFCFCF}
and these ones are used in the tables

table.data tr.clientareatableactive td{background-color:#DFFFE0 !important;}
table.data tr.clientareatablepending td{background-color:#EFEFEF !important;}
table.data tr.clientareatablesuspended td{background-color:#FFF6CF !important;}
table.data tr.clientareatableterminated td{background-color:#FFCFCF !important;}

RandyC
05-27-09, 09:47 PM
I did the first one thats ho wi have it on boxes i guess its the other ones i have to do :p

thanks.

EDIT:

Worked, thanks.