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.
You can use Adblock for this! :) Depending on what browser you use, you should be able to add it as an extension.
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;
}
@ 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..
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. :)