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.