I would like a simple frame blocker please.
November 29, 2011 9:01 AM Subscribe
I'd like a CSS filter for Stylish (Chrome) that will block the first frame of a webpage.
The webpage source is something like:
Let's pretend the parentheses are angle brakets.
(frameset border="0" rows="92,*")
(frame name="HEAD" scrolling="no" src="http://www.whatever.com/HEADsoure.htm")
(frame name="BODY" src="http://www.whatever.com/BODYsource.htm")
(/frameset)
I've tried:
frame[name="HEAD"]{
display: none;
}
and
iframe[name="HEAD"]{
display: none;
}
but neither of these work, could someone give me a clue? Googling for stylish and tutorial doesn't exactly get me where I want to go.
posted by Brent Parker to technology (13 answers total)
posted by wongcorgi at 9:09 AM on November 29, 2011