View Single Post
  #3  
Old 03-24-2014, 04:43 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Theme Tweaker does not work

Hi guys!

The problem you faced is caused by the CSS code you are inputting. Let me explain. The skins/default/en/css/theme.css file already contains the following code:

Code:
.powered-by p { margin: 0 0 7px; display: inline; width: 45%; white-space: nowrap; }

and if you simply put .powered-by {display: none;} code into Custom CSS field, it will not work because according to CSS rules the code above has higher priority. At least, this way my Google Chrome displays things.

What you can do in order to work around this issue is to specify your code like this:
Code:
.powered-by .powered-by-label { display: none; }

and it will work as you need.

Tony.
Reply With Quote