I am trying to put a tour widget on my band's website and I've used CSS to modify a CSS element by the ID. Normally I can just call its class and it will override, but this element only has an ID.
If you've ever seen the songkick widget, the "By Songkick" part at the top is what I'm trying to get rid of. It's ID is "powered" but when I override with #powered or .powered, it doesn't change.
I've been doing:
#powered {
display: none;
}
And nothing comes of it. It's not showing in the hierarchy of CSS in Chrome.
Is there another way to modify CSS by ID or do you think it's because the whole widget loads after my webpage and it overrides my changes? Is there such a thing as privatizing your CSS objects?