Replies

Oct 21, 2019 6 years ago
FENNEC
is on cloud nine
User Avatar

I’d like to block an image on mobile if its possible. One of the quest people makes me anxious seeing them. Idky they just do and it unfortunately makes me want to skip them.

Oct 21, 2019 6 years ago
Jovi
is a THIEF!
User Avatar

You can use Adblock for this! :) Depending on what browser you use, you should be able to add it as an extension.

Oct 21, 2019 6 years ago
dalice
with a cherry on top
User Avatar
August

you can use 's -Shopkeepers">Remove Shopkeeper css to do this :)

for example removing morostide only carl: /* removes mcarlquest img */ img[src="//img.subeta.net/npc_drunkcarlmorostide.png"] { display:none; }

Oct 21, 2019 6 years ago
FENNEC
is on cloud nine
User Avatar

@ jovi it won’t let me on mobile:(

@ dalice thank .. but it’s still showing up..idly. I tried deleting all my other css n still..

Edit:I wanted to block drills. I didn’t have a good experience in life n seeing someone in military.. just doesn’t help with anxiety..

Oct 21, 2019 6 years ago
Elementary, my dear
Written
User Avatar

You have to make sure you have the right url. So Major Drill's currently is:

https://img.subeta.net/morostide_majordrills.png

And to block it you'd just plug it into the coding given:

/* removes major drills morostide img */ img[src="//img.subeta.net/morostide_majordrills.png"] { display:none; }

You can also add the coding for his regular image: /* removes major drills img */ img[src="//img.subeta.net/majordrills.png"] { display:none; }

[Edit]Since his image will probably have different urls for different holidays, instead of making a different code for each one, you can just use the below:

/* removes ALL major drills img / img[src="majordrills"] { display:none; }

Unless there's a Major Drills image url that does not contain "majordrills" somewhere in it, you should be good to go with that.

Also if the coding is still not working, make sure that you have selected all of it, including the closing bracket. Coding is really finnicky if you miss a piece. :)

The past is written, but the future is left for us to write. ~ Picard

Oct 21, 2019 6 years ago
FENNEC
is on cloud nine
User Avatar

thank you SO SO MUCH!! Yeah idky..i kept getting the wrong image url. Strange.

Please log in to reply to this topic.