Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my MainView:

Ext.define("Test.view.Main", {
extend: 'Ext.Panel',
config: {
cls: 'transp'
}
});

Here is (the relevant part of) my app.css:

/* line 3, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
h4, h5, h6, pre, code, form, fieldset, legend,
input, textarea, p, blockquote, th, td {
margin: 0;
padding: 0;
}
.transp
{
   background-image: url(http://support.sencha.com/assets/images/logo-sencha.png);
   background-repeat: no-repeat;
   background-size: 100% 100%;
}

I know it recognizes the class because when I set the opacity to 0, the gray background of the mainview isnt displayed. Can someone please help me? I am at a total loss.

share|improve this question
have you tried !important? – Thiem Nguyen Jun 18 '12 at 1:18
No I didn't...How could I not think of that!?!??! You sir, are my hero. Thanks so much! – John Jun 18 '12 at 1:22
You're so welcome. Pls accept my answer posted below to close this thread, according to community rule. Thanks. ;) – Thiem Nguyen Jun 18 '12 at 1:23
Did I just do that successfully? – John Jun 18 '12 at 1:45
Yep, that's it. Hope to help you in the future. ;) – Thiem Nguyen Jun 18 '12 at 1:48

1 Answer

up vote 2 down vote accepted

Try using !important in your CSS property.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.