| |

Game Moderator Neutral
|
Does anyone happen to know the pixel size limit that the little pictures at the bottom corner on both sides of each wolfplay page is? And the code to change the corner images(the code where it changes the image every season) I would be trying to get a separate art piece for each game season, so if that will make a difference to the size answer, please elaborate on the size per game season
I'm wanting to try changing the plants to be Tolinska and Kensaku in spring and for Summer, Fall and Winter I would want it to be two of my ocs(Mukul(with the baby duckling that imprinted on him) and Kiet, the adopted sons of Tolinska and Kensaku), each season would be a different different art piece. Edited at June 30, 2024 06:34 PM by Destinations End
|
|  |
|
| |

Game Moderator Neutral
|
How do I change the button color? My buttons broke in the update and Eve said I need to redo the code for the buttons.
I am really confused how to do this though because I don't remember what the button code is
|
|  |
|
| |

Administrator Lightbringer
|
The site has had an update which may break your palettes. If you are having black text showing up that you want to be a different color, add this code and change the colors to whatever you wish: .veryblack { font-family:arial,sans-serif; font-size:15px; color:#000; } .veryblack a:visited { font-family:arial,sans-serif; font-size:15px; color:#000;} .veryblack a:link { font-family:arial,sans-serif; font-size:15px; color:#000;} .veryblack a:hover { font-family:arial,sans-serif; font-size:15px; color:#4f2907;} The class updated for the new colors is .mainlineblack so you may need to update that as well. Edited at July 11, 2024 02:11 PM by SixBears
|
|
|
| |

Darkseeker
|
I can't seem to figure out how to change the corner images at the bottom of the page, the header, or any of the bars (pack happiness, health/hunger/thirst). I was told to use the code .mainscreen5 , but this doesn't seem to work right for me. Any ideas?
|
|
|
| |

Darkseeker
|
.mainscreen5 changes the header image, not the footer images. It also needs to be a specific size or you'll have issues. Use.mainlinetan img for the footer images. PH, Health bars, and CP bars can't be changed at the moment (unless you're okay dealing with the various other issues that code bring up).
|
|
|
| |

Darkseeker
|
Thank you! I don't mind having coding issues. I have a palette made by another user where the bars are different, but I don't know the code to play around with it myself. Vennenum said: .mainscreen5 changes the header image, not the footer images. It also needs to be a specific size or you'll have issues. Use.mainlinetan img for the footer images. PH, Health bars, and CP bars can't be changed at the moment (unless you're okay dealing with the various other issues that code bring up).
|
|
|
| |

Darkseeker
|
I tested this on my own palette and haven't found many issues so far: Try these out:
/* PH Bar */
.mainlineblack .mainlineblack div {
border-radius: 0px !important;
background: rgba(255,205,153, 0.5) !important;
}
/* Wolf CP Bar */
#rightcolumn .mainlinegr div {
background: rgba(255,205,153, 0.75) !important;
border-radius: 0px !important;
border: 1px solid black !important;
} PH Bar does trickle over to the mailbox (not a huge deal for me) but if anyone else figures out something better, I'm all ears. The !important overrides the hardcoding. Don't leave it out. Lemme know! Edited at July 12, 2024 12:10 AM by Vennenum
|
|
|
| |

Administrator Lightbringer
|
If your tables are transparent, use this code: .cinco { background-color:colorofyourchoice; } Edited at July 12, 2024 03:29 PM by SixBears
|
|
|
| |

Neutral
|
Can someone either help me with the bottom images or give me the full code for it? Everytime I try it, my image either gets stuck behind the holly berries or it doesn`t work. If someone want to post their code I will change the bottom images to my own. This is the code that gets stuck behind the holly berries images: .mainlinetan img { background-image: url(https://f2.toyhou.se/file/f2-toyhou-se/images/85137994_2GOgSTW1RcesCf4.png); }
|
|
|
| |

Darkseeker
|
Use background, not background-image. You shouldn't be hotlinking directly from toyhou.se anyway.
|
|
|