Comments on [F2U HTML CODE] Prism All Comments

hey! Was trying to use this code for one of my ocs but i can't figure out how to change the example character's picture to my oc's picture. I tried putting it right in and editing on this site's profile editor myself but it just deletes the whole thing instead of just the picture. I saw you replied to someone saying to edit it in circlejourneys code editor but i don't even know where to begin on swapping the images on there. Some help would be appreciated! :,)

dont use the sites profile editor (as in wysiwyg) ! trying to use it to edit a code can screw the code up and you might not be able to edit it at all ^^;

 you have to keep it turned off and paste in the code, and then edit the specific parts of it you need to change

circlejourneys code editor is a good way to edit it while knowing what its going to look like, because it will show a preview of the code while you write it without breaking the code!

its understandable to be confused about what/where to edit if you're new to code! but i can help you! I'll let you know the specific part you have to change and what you have to put in ^_^

first, look for this line of code (it should be around line 33 on my github post of it!) 

the line in question :

<td><p  style="padding: 125px; border: 0px solid #d9d9d9;font-size:10px;background-image: url('https://f2.toyhou.se/file/f2-toyhou-se/images/17112517_2g8mSZRM750KhPc.png');background-size:contain;"></p></td>

-

After that, locate this part of that line:

"background-image:url('https://f2.toyhou.se/file/f2-toyhou-se/images/17112517_2g8mSZRM750KhPc.png');"

this is the part you want to edit:

('https://f2.toyhou.se/file/f2-toyhou-se/images/17112517_2g8mSZRM750KhPc.png')

the link in these parentheses is an image link to the picture of my character i used! in order to change it to your own picture you want to use, you'll need to replace it with the image url of that picture

if you are unfamiliar with the idea of image url!! if you go to the picture you want to use and long press the image (mobile) or right click it (pc, or at least windows) you should be able to select "open image in new tab". The page it brings you to will have basically only the image. it's the URL for the image itself! You can copy the link/url of that page and that will be the link to the image you want to use! in the case that you cannot open it in a new tab, you can also hit "copy image URL" in order to directly copy the image link!

After you've grabbed that link, replace the link in the parentheses with your own link. Only replace the link! not the ' marks, and not the parentheses! it should look like this: ('your link');

You can make these edits in the circlejourney code editor if you want! If you're comfortable with it, you can edit it on toyhouse with WYSIWYG disabled! (if you enable it at any point when editing, it will mess up the code! additionally, codes will not work if pasted directly into wysiwyg!

if you already applied the code after trying to edit it in WYSIWYG, make sure to delete the whole thing and re-paste it with WYSIWYG disabled! sometimes there can be issues when wysiwyg turns on by itself, so when editing code, go to your display settings on TH and select "WYSIWYG off/disabled" ! when you're done you can turn it back on in ur settings if u want!

If the code shows up "weird" after disabling etc, just reload the page. It may take a refresh or two to save your toyhouse settings.

I hope this will solve your problem! Let me know if you need any more help!

Thank you so much! This really helped. :D