News Archive

jujipup
Posted by jujipup on 26th of September 2016 at 06:46 PM NST
We had a request come in to fix the Illusen Lookup so we've gone ahead and updated its coding.  Hurray!  We've also taken a look at our Fall Graphics and updated the coding for the rest of the Userlookups with the Fall/Halloween theme.  If these or any of our other Userlookups are giving you trouble, please feel free Contact Me.  We've fixed a few in the past, but not all, as well as a few small graphics.  We are continuing to work on getting our graphics updated with the latest coding change.

Illusen  Fall Feast

Follow the Red Leaf  Neovia
Nightfall
Hurray!  Now I can show off my Halloween and Fall spirit!


Wait, what's going on with SunnyNeo graphics??

Posted by jujipup on 16th of April 2016 at 01:10 PM NST:

Many have noticed that SunnyNeo and other fansite graphics are suddenly breaking on Userlookups and Shops.  This actually started years ago on Petpages.  Marleen was actually talking to TNT in the past on getting it fixed but unfortunately it never was.  It appears that the issue has now moved to userlookups and shops.

Why are some images working like backgrounds and others breaking?
Any image that is apart of an image code Neo's system sees the fansite URL and is adding a "redirect" measure to it which of course breaks the image.  So anything that has this kind of code breaks:

<img src="https://sunnyneo.com/adoptable/hd_blueabigailadoptable.png">

What we've done to work around this on petpages is to put all images into a style sheet or as a style on a div so like either of the following:

<style>
#adopty {
background:url("https://sunnyneo.com/adoptable/hd_blueabigailadoptable.png");
width:97;
height:133;
display:block;
</style>

<div id="adopty"></div>

<div style="background:url('https://sunnyneo.com/adoptable/hd_blueabigailadoptable.png');
width:97px;height:133px;display:block;"></div>

So if you know how to code, you can feel free to do this fix to get them to work.  We are working on recoding our graphics to make them work once again.