ElninoM715
Member
Posted 2 years ago #
Hello,
I am using the theme "Pyrmont V2 2.0.1 by motta" and I would like to know if anyone knows a way to move the sidebar from the right side of the page to the left side. Any help would be much appreciated. Here's a link to my dev site if it helps any:
http://hurricanecomp.com/dev
Try editing style.css and changing:
div#main {
display:inline;
float:left;
margin:30px 25px 30px 10px;
width:660px;
}
to
div#main {
display:inline;
float:right;
margin:30px 25px 30px 10px;
width:660px;
}
ElninoM715
Member
Posted 2 years ago #
It worked! Thanks!
I can't believe it was that simple lol.
Hey - it surprised me too. You might want to switch the margins as well - from margin:30px 25px 30px 10px; to margin:30px 10px 30px 25px;.