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


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 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.


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?
Go to bottomPage: 12
TOPIC: CSS templates
#53167
Re:CSS templates 10 Years, 9 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 10 Years, 9 Months ago Karma: 765
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 10 Years, 9 Months ago Karma: 0
Thank you.
The administrator has disabled public write access.
 
Go to topPage: 12