Hello! I made my profile eons ago, and I honestly don't remember what half of it means anymore when looking through the code, haha.
My old computer screen was much smaller and my profile looked perfectly centered on it, but now with a bigger screen I realize it's all offset to the left-hand side. I'd love some help with how to adjust my current code to maintain the same spacing between each column, but have them centered.
My current code
: Second star to the right, and straight on 'till morning :
: Live Long And Prosper : RIP Leonard Nimoy :
"A life is like a garden. Perfect moments can be had, but not preserved, except in memory. LLAP"
Hi
The quickest (and laziest) way to do it, would be the following ,
{
position: relative;
left: calc((100vw - 1400px) / 2);
}
{ width: 100%; margin-left: -90px; text-align: center; }
Just add it below everything else and you should be good to go! Let me know if it doesn't do the trick or if you have any further questions.
The best (and most work-intensive) way is to rewrite your code so it matches the new standards for bigger screens etc, but that takes a lot of time for something that basically ends up looking the same.
That worked perfectly, thank you so much! :)
: Second star to the right, and straight on 'till morning :
: Live Long And Prosper : RIP Leonard Nimoy :
"A life is like a garden. Perfect moments can be had, but not preserved, except in memory. LLAP"
You're very welcome! Feel free to contact me if you need more help with coding. PS: Don't forget to change the title of your topic so that the moderators know to lock this topic ;)
Thanks, will do so if I do! :)
: Second star to the right, and straight on 'till morning :
: Live Long And Prosper : RIP Leonard Nimoy :
"A life is like a garden. Perfect moments can be had, but not preserved, except in memory. LLAP"