Replies

Jun 1, 2016 9 years ago
MamaBear
is a perfect tosser
User Avatar

I used to have a couple lines of code to help me see things a bit better in Leviathan Harpooning: something to display the game board bigger and something to leave a blank space in squares I've "missed". Would any one out there still have this so I can restore it, please?

Now that I'm making a habit of Major Drills quests again, I'm remembering how much LH really screws with my eyes.

Jun 1, 2016 9 years ago
Adventure Captain
sonata
User Avatar

Well hiding the missed spaces should be easy.

img[src="http://img.subeta.net/rough_water.png"] { visibility:hidden; }

Not so sure about making the board bigger without potentially messing with other parts of the site.

[edit]

I suppose the most efficient way would be to use a code similar to the above, to target all the different images the game has and set the height and width on those.

img[src="http://img.subeta.net/safe_water.png"], img[src="http://img.subeta.net/rough_water.png"], img[src*="http://img.subeta.net/battleship_tile_monster"] { height:40px; width:40px; }

I think that should work. You can of course change the numbers to your preference.

(you may need to add http: in front of the codes. for some reason that doesn't show up here and it seems to be needed for the url's to be recognized)

Art by
[tot=sonata]

Jun 1, 2016 9 years ago
Go home
Morse
you're drunk
User Avatar
Kettunen

To get a gap between the squares, you'll just need to add padding to 's code above (by the way, image urls without 'http' didn't work for me) like this:

img[src="http://img.subeta.net/safe_water.png"] {padding:1px; height:40px; width:40px;} img[src="http://img.subeta.net/rough_water.png"] {padding:1px; height:40px; width:40px;} img[src*="http://img.subeta.net/battleship_tile_monster"] {padding:1px; height:40px; width:40px;} This adds lines separating the squares, and you can make the gaps bigger by increasing the padding value.

- - - - - . - . . . . .

🌸 [flower=Morse] 🌸

Jun 1, 2016 9 years ago
MamaBear
is a perfect tosser
User Avatar

Oh my gosh, you guys, this is perfect! I have been struggling so hard... you just can't imagine how much I appreciate this. Thank you both!! <3<3 [edit]You got a forum point while making a post!

Yay!

Jun 1, 2016 9 years ago
Adventure Captain
sonata
User Avatar

you're most welcome. :)

Art by
[tot=sonata]

Please log in to reply to this topic.