« Web, HTML, Tech Forum

Is it possible to move the body of a profile page to the left (or right)? [closed]

Posted by Milli

posted

Forum: Web, HTML, Tech

Image for visual example.

I think the body element is called ".main"?
But I'm unsure as to how one could move it, or if that's even possible. I've tried looking up side layouts and all I found were layouts that flip the elements *inside*, such as the links / comments / etc, rather than moving the entire body to the side of the screen.

Thanks all for any help or info.


Report Topic

2 Replies

Sort Replies:

Reply by OxeeCleen

posted

If you don't want to mess with the .container parent element, try using:

<style>
main {
 position: relative;
 left: -5rem; /*adjust this as needed */
}
</style>

Hope this helps ^_^


Permalink Report Reply

Reply by Milli

posted

@oxeecleen

this helped me figure out a bunch! thanks!


Permalink Report Reply

Milli closed this Forum Topic