Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've looked into media query related questions for a while yet haven't found a solution to my problem. I'm sure it's just a tiny thing I'm overlooking, but for some reason I can't figure it out.

So, I have a button with the class .ScopeToggle that I want to adjust for mobile phones in portrait orientation. I've tried all of the different orientations I can conceive, but here's how I'm doing it right now:

In the HEAD tag:

<link rel="stylesheet" type="text/css" href="buttons.css" />
<link rel="stylesheet" type="text/css" href="mediaQuery.css" media="only screen and (max-width:340px)" />

In the buttons.css stylesheet:

#MainContainer .ScopeToggle
{
    position: absolute;
    right: 7px;
    width: 150px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    list-style: none;
    font-size: 0.8em;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
}

In the mediaQuery.css stylesheet:

.ScopeToggle
{
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background: none;
    width: 75px;
}

The problem is when I look at this in chrome's dev tools the media query styles are getting picked up and displaying in the 'styles' pane, but are crossed out (to show that they've been overridden by the buttons.css styles).

I didn't have this issue when all of the styles were just written into the document's HEAD tag, but for some reason this abstraction has stopped it from cascading as expected. I've also tried putting the media query directly inside of the stylesheet without the LINK element having an inline "media" attribute AND I've put the media query inside of its own STYLE tag below buttons.css, but this all has the same result.

Thoughts? Thanks in advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

Ha... Well... I figured it out. I feel stupid, but the default style had an ID prefixed to it while the media query's style did not.

CSS Selector in buttons.css:

#MainContainer .ScopeToggle {...styles...}

CSS Selector in mediaQuery.css:

.ScopeToggle {...styles...}

So, adding '#MainContainer' to mediaQuery.css' selector gave it dominance and solved the issue.

I'm really sorry I wasn't able to provide the wrong information to solve this.. :( I'll update the description to show what the selector actually was.

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.