Hi all. I am a disabled person and currently grappling with a migraine, so I can't look at a bunch of tutorials but I'd like to fix my user profile. It has a couple small problems, mostly that things are offcenter since my monitor resolution is very large.
I was hoping someone might be able to give me quick, concise advice or point me to a specific guide so that I can repair the profile without a lot of mental labor. It is a premade user profile provided by SubetaLodge (and though they say no changes are allowed, I assume small fixes and accessibility tweaks are A-OK. I have no intention of removing the credit for the original creator!)
try adding this:
body {
margin-left: 50%;
transform: translateX(-50%);
}
Frenchi's solution above may be sufficient, as it moves the content to the center of the page.
If you want the other elements more aligned to the columns, you could alternatively try this:
body{position:relative; width:900px!important; margin:0 auto;}
.column{width:275px!important; top:308px!important;}
{left:288px!important;}
[box=#509b91]
[/box]