thank you for the updates! I've shrunk the shopkeepers.
I have this in my CSS and am still seeing the header, footer, postcards etc:
/optimize site for small screens, kill footer, improve clock/
, , , .push, , {display: none;}
footer p a[href="http://www.twitter.com/subeta"], footer p a[href="http://www.facebook.com/subeta"], footer p a[href="http://subeta.tumblr.com"] {display:none;}
-time {font-size:13px; margin-top:9px !important; margin-left:200px !important; padding:4px 0; height:auto; line-height:1; letter-spacing:1px; box-sizing:border-box; width:90px;}
Is it dead, or is it my computer being difficult?
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |
This is what I see for my quests:

Are you using the exact code that I've written up above from the first box? If so, it should definitely work.
Maybe try copy/pasting this again and see if it works. If not let me know!
/Hide Quest givers images/
img[src="//img.subeta.net/quests_wizard.gif"], img[src="//img.subeta.net/npc_saggitarius.png"], img[src="//img.subeta.net/npc_drunkcarl.gif"], img[src="//img.subeta.net/npc_cinthia.png"], img[src="//img.subeta.net/quest_mori.png"], img[src="//img.subeta.net/quest_nori.png"], img[src="//img.subeta.net/npc_alexander_summer.png"], img[src="//img.subeta.net/maleira.gif"], img[src="//img.subeta.net/npc_pete.png"], img[src="//img.subeta.net/quentin.gif"], img[src="//img.subeta.net/npc_natasha.png"], img[src="//img.subeta.net/majordrills.png"], img[src="//img.subeta.net/npc_shinwa.png"]
{display:none;}
I'm also using a couple of the CSS fixes from the first page on this thread (things like fixing the clock, making screen more optimised for space, move floating items, change WL border, fix bookmarks, better sidebar events, adblock). I've had a look through these code and none of them should conflict with the hiding quest givers image.
[font=monaco]« Tomorrow belongs to those who can hear it coming. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
Looks like a stray comma is breaking it, but the code is old anyway so replace the whole chunk with new code from the first post. :)
Subeta loves to add slashes to code, those are the problem. Get rid of the backslashes that have been inserted.
Also this knocks out all of the ones with NPC in the URL:
img[src*="//img.subeta.net/npc_"] {display:none;}
Oh! That makes so much sense! :) thanks for pointing this out! Now that you've mentioned it.... I only just realised there's a whole bunch of back slashes! :o I wonder why it does this when we put stuff inside the code tag?
Anyhow, I've made a code snippet in Evernote: https://www.evernote.com/shard/s77/sh/04eda5fc-49df-45fe-a33b-742dccdc50e9/d747c2970b7281131e67859d7b42118c Please feel free to use this version instead! :D
[font=monaco]« We can be heroes, forever and ever. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
No clue what makes it happen but it's the WORST. Also I added something to the post above for ya ;)
Perfect! :) thanks for your fix! This is such a weird bug with the code tag :P
img[src*="//img.subeta.net/npc_"] {display:none;}
I suggest, in addition to npc_, also adding path for quests_ and quest_ since not all quest giver images paths follow the npc_ pattern:
img[src*="//img.subeta.net/quests_"] {display:none;}
img[src*="//img.subeta.net/quest_"] {display:none;}
This is because of the inconsistent file names for Wizard (quests_wizard.gif) vs all the other NPC images vs Nori & Mori (img.subeta.net/quest_mori.png; img.subeta.net/quest_nori.png)
(also, sometimes I don't want to block every single NPC image, just the quest givers as I want to do my quests quickly, so it can be handy to only specify the NPCs I want to block and leave the rest untouched)
And it seems like Quentin needed to be added in separately as his image is just img.subeta.net/quentin.gif
(somehow the patterns for npc images are just not consistent).
img[src*="//img.subeta.net/quentin.gif"] {display:none;}
P.S. ugh it's doing that backslash thing again inside the code tags O_o;;
[font=monaco]« We can be heroes, forever and ever. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
you two are awesome! My Subeta-ing is so much more streamlined now.
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |
Thank you both. I didn't even realize that. It's working now. Thank you both!!!!

Well, the site can't make it easy by NOT adding random slashes and seemingly randomized img URLs, :D Thanks for being amazing. :)
You're welcome, glad and me could help out! :)
I am thinking of asking on the site functionality bugs board about the backslash in code tags, as it is confusing.
And now that I look again, Maleria's image is actually officially misspelled on the server as "img.subeta.net/maleira.gif" xD Gotta love these quirks about Subeta :P
Also, just an extra bit of info,
For anyone who is individually blocking npc images and not doing a blanket block:
Alexander seems to have another image for colder seasons: img.subeta.net/npc_alexander_winter.png So this will have to also be added to the list of stuff to block. I've updated my code snippet: LINK
Major Drills npc image is also just majordrills.png without the npc_ in front of.
[font=monaco]« We can be heroes, forever and ever. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
since you've got a code for individual blocks, everyone has two images (regular and morostide -- i think the morostide ones are just morostide_NPCNAME.png) and alexander has seven different books. you have the first two (summer and winter), and the rest are february, march, april, fireside, and ghostbook.
Thanks for letting me know! :D I've found all the images except a few which I can't seem to find. I've updated my code snippet for the time being: https://www.evernote.com/shard/s77/sh/a5b856e7-aa96-4f02-8757-f1f9e872c9b8/eb43484691a344b14c2ee487e31cc093 The missing Morostide NPCs (Pete, Quentin) I tried to look up but I'm not sure if they've got Morostide images or not.
[font=monaco]« We can be heroes, forever and ever. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
Maleria has two images, just to make life easy: img.subeta.net/maleira.gif and img.subeta.net/maleria.png
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |
you're welcome! i thought pete and quentin being costume-less had to do with the inconsistent naming system you brought up, but i did some poking with forum search and i guess they don't have costumes anymore :c How come?
thanks for pointing this out! :P I've updated my code now. so strange that there are two identical images of her but just with different spelling and file formats.
I see! that's a shame they don't do costumes anymore, would be nice to see them in something different this Morostide! :)
[font=monaco]« I don't know where I'm going from here, but I promise it won't be boring. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
(Omg no way, I actually wrote something that works despite having no idea what I'm doing)
To make Random Events more obvious so that you don't miss Tempest etc: {border: 6px solid ;}
To make CWs more obvious: img[src*="//img.subeta.net/icons/bullet_star.png"] {border: 2px solid ;}
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |
Thanks for this! I've got to try it out :) Great to hear you're having fun making customCSS! :D it's actually pretty amazing what you can do with CSS when you start experimenting!
[font=monaco]« Tomorrow belongs to those who can hear it coming. »[/font]
🍂🍁🪭
🍭🍬 🥚[egg=Selphina]🍳 🧻[tp=Selphina]🗞️
💋💕 🌸🌻 💃🕺
Nice, have fun with CSS! This is what I suggest for the CWs ;) You can swap out red for any colour you like (hex codes included), and transparent for white if you like how that looks more.
.wl_item img.custom_wearable {
background: radial-gradient(circle farthest-side at center, red, transparent);
}
[edit]There's also something for more obvious wishlist item borders in the first post, might interest you.
oh hell yeah! That is way better -- I just used Border because I knew of its existence. Thanks!
In my sig now: 
yas! I hope it works for you -- it's not the easiest one to test, because you have to wait for a random event to see if it's doing anything!
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |
Whoops, sorry, double post.
useful threadsThe Giant List of Usability and Random Improvement 2.0 Comprehensive Guide to Battle Opponents (v2) [topic not found]
|
[topic not found] |