verve315 0 Report post Posted August 2, 2011 Hi, I need some help with aligning the side bar. I am able to position the side bar the way I want it in my home page using this css code: #sidebar-wrap {margin-top:-280px;} #sidebar1 {width:250px !important; float:right;} #sidebar2 {width:250px !important; float:right;} as is shown here: http://elogicway.com/verve/sample-page/ But the problem is, the side bar misaligned in all of the pages that don't have the feature slider and box as is shown here: http://elogicway.com/verve/master-class-series/overview/ I've noticed that if I remove this code: #sidebar-wrap {margin-top:-280px;} the side bar in all pages except the home page aligns properly. Any help on how to properly align the side bar both in home page and other pages would be greatly appreciated. Share this post Link to post Share on other sites
catrina 103 Report post Posted August 3, 2011 You'll need to add the page ID before the #sidebar-wrap selector to specify which page the sidebar will repositioned in. Since you want the sidebar respositioned in the home page, you'll need to use this line of CSS instead: body.page-id-2 #sidebar-wrap {margin-top:-280px;} page-id-2 is what changes according to how you want the sidebar repositioned (in the example above, the 2 is the page ID number for the sample page.) The page ID number can be found by viewing the top of the HTML source. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
verve315 0 Report post Posted August 3, 2011 Hi Catrina, You are absolutely brilliant!! It works now. Thank you so much for the help. I greatly appreciate it. Share this post Link to post Share on other sites
catrina 103 Report post Posted August 3, 2011 You're welcome Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites