How do I move my profile (image) so that it's centered no matter what screen resolution someone viewing it has? Also, if I want a column to be in alignment with the profile image after it's been centered, what is the code so that it's always, for example, 200px to the left from the center? Thank you. C:
I don't see an image on your profile... but if you want to center a background, it would be:
body, html {background-image: url(IMAGE URL); background-position: center center; background-repeat: no-repeat;}
That will make it centered horizontally and vertically. If you want it at the top of the screen, but centered horizontally, change the part that says "center center" to "top center".
As far as the column goes, I don't think there's a way on Subeta to make it always 200px to the left of the screen's center regardless of resolution... you can position a specific number of pixels from the left side of the screen, or you can make it centered.