You are viewing a single comment's thread.

view the rest of the comments →

0
3

[–] jakeinator21 0 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.

0
3

[–] neonneophyte 0 points 3 points (+3|-0) ago 

Dick move if intentional

0
1

[–] jakeinator21 0 points 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".