Replies

Feb 19, 2019 7 years ago
joItik
is buggin out
User Avatar

I've taken up coding, like, 30 minutes ago and I have a few questions. I'm using the free premade coding made by Chen.

Question 1: what is the max pix width from side to side of a screen?

Question 2: how do I edit the size and placement of my Pets' headshots in my user profile?

Question 3: how exactly do I get image URL's, and how do I add them in my backgrounds?

Question 4: how do I get a new line of text in blank sections in my user profile? If I use Enter, it doesn't work?

Thanks in advance! :)

• they/it •
wishlist
[kiss/=smallcritter]
[dance/=smallcritter]
[tot/=smallcritter]
[tree/=smallcritter]

Feb 19, 2019 7 years ago
Fire
is sweet
User Avatar
Shinju

  1. I would use 100% instead of pixels since it changes from person to person. If you prefer to only use pixels, I would go width 800p or 1000px. Basically just under what the minimum might be for someone's screen

  2. If it's what I think you mean, go to your pet's page and click "Edit headshot" in the options of each pet (it's the second option under edit description) lemmie know if you need a screenshot

  3. Right click on an image and "copy image's direccion". Some times you'll need to save them and re upload them to a site like imgur. To add them as a background use: background-image: url("LINKGOESHERE"); You put that in the section you want the background. For example: body { background-image: url("paper.gif"); } Here's a guide on image background and how to make gradient color backgrounds. It's a good tutorial site in case you want to change the shape of the background, flip it around, etc.

Feb 19, 2019 7 years ago
joItik
is buggin out
User Avatar

Thank you so much!! Appreciate your help!

• they/it •
wishlist
[kiss/=smallcritter]
[dance/=smallcritter]
[tot/=smallcritter]
[tree/=smallcritter]

Feb 19, 2019 7 years ago
Fire
is sweet
User Avatar
Shinju

No problem, feel free to comment/ask anything if you need help

Feb 19, 2019 7 years ago
joItik
is buggin out
User Avatar

sorry to ping you twice, but do you maybe know the answer to the fourth question? Whenever I make a blank section and add enters to seperate text, it just shows up as a block of text? Thanks in advance!

• they/it •
wishlist
[kiss/=smallcritter]
[dance/=smallcritter]
[tot/=smallcritter]
[tree/=smallcritter]

Feb 19, 2019 7 years ago
Fire
is sweet
User Avatar
Shinju

Try

Or

Here's the difference: You can add style to (p) unlike to (br). For example:

.blank_1 p { text-indent: 50px; }

Here I'm saying that all the (p) inside the blank_1 class (so the blank section) will have indentation of 50px

Feb 19, 2019 7 years ago
joItik
is buggin out
User Avatar

Thanks a lot!

• they/it •
wishlist
[kiss/=smallcritter]
[dance/=smallcritter]
[tot/=smallcritter]
[tree/=smallcritter]

Please log in to reply to this topic.