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?

CSS templates
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: CSS templates
#53167
Re:CSS templates 9 Years, 3 Months ago Karma: 0
These styles are being overridden:

Code:

.ui-widget-header {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: 0;
  color: #b8b8b8;
  font-weight: normal;
  padding-left: 15px;
  padding-right: 15px;
}

tr.even, tr.even TD {
  background-color: #232427;
}
tr.odd, tr.odd TD {
background-color: #18191b;
}



I have a suspicion the problem might have started when I installed hikashop.
The administrator has disabled public write access.
 
#53169
Re:CSS templates 9 Years, 3 Months ago Karma: 747
Use the following CSS rules:

BODY .ui-widget-header {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border: 0;
color: #b8b8b8;
font-weight: normal;
padding-left: 15px;
padding-right: 15px;
}

BODY tr.even, BODY tr.even TD {
background-color: #232427;
}

BODY tr.odd, BODY tr.odd TD {
background-color: #18191b;
}

Regards,
ARI Soft
The administrator has disabled public write access.
 
#53185
Re:CSS templates 9 Years, 3 Months ago Karma: 0
Thank you.
The administrator has disabled public write access.
 
Go to topPage: 12