Answered Archived Why can I block some subs but with others I don't see the block button? (NoStupidQuestions)
submitted ago by Mr_Wizard
Posted by: Mr_Wizard
Posting time: 5.4 years ago on
Last edit time: 5.4 years ago on
Archived on: 2/12/2017 1:51:00 AM
Views: 630
SCP: 10
10 upvotes, 0 downvotes (100% upvoted it)
Answered Archived Why can I block some subs but with others I don't see the block button? (NoStupidQuestions)
submitted ago by Mr_Wizard
view the rest of the comments →
[–] jakeinator21 0 points 3 points 3 points (+3|-0) ago (edited ago)
Weird. I don't have a block button on /v/nfl either. But I do on every other sub I can find. Maybe their css hides it?
Ok, I have a solution for you. In Chrome, right click on the Subscribe button and click inspect element. It will bring up the css for the subscribe button in the developer tools and show it in the element list highlighted. The next element down is the block button, it should be listed as
<button type="button" class="btn-whoaverse-paging btn-xs btn-default" onclick="return toggleBlockSubverse(this, 'NFL')">block</button>
Select the element and look at the styles tab in its css. You should see near the very top of the list an option that says
display: none;
Check the box next to that option to deselect it and the block button will then be visible on the page. Now you can click it to block /v/nfl.
[–] neonneophyte 0 points 3 points 3 points (+3|-0) ago
Dick move if intentional
[–] jakeinator21 0 points 1 point 1 point (+1|-0) ago
I'm pretty sure it'd have to be intentional, the css is showing the display style for the block button to be "none".