jolibidi 1 Report post Posted May 30, 2012 Hi Everybody, I changed the layout to full width, but now the logo is moved all the way to the left. Can you please tell me how I can reposition it above my Home button? What code to enter under editor? Share this post Link to post Share on other sites
mackenzie 12 Report post Posted May 30, 2012 I believe you need to change this in your custom CSS: [code]#branding { padding-top: 15px; vertical-align: baseline; width: 300px; }[/code] to this... [code]#branding { padding-top: 15px; vertical-align: baseline; }[/code] The width element when removed moves the image back to the flush with the left of the content. Mackenzie - PageLines Help Desk The Centsible Family - Writer, Photographer and Coffee Addict --------------------------------------------------- Kindly search this forum and read the documentation before posting. It will help you resolve many issues. For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting. Share this post Link to post Share on other sites
jolibidi 1 Report post Posted May 30, 2012 Worked! Thanks so much! I was adding the vertical-align to branding wrap instead of #branding. Share this post Link to post Share on other sites