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! :)
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
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
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.
Thank you so much!! Appreciate your help!
No problem, feel free to comment/ask anything if you need help
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!
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
Thanks a lot!