manenberg 0 Report post Posted January 3, 2011 What do I do to put a thin black border around my site.It should be between the white and gray.www.marcsloans.com Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 4, 2011 In Custom Code > Custom CSS; `body{border:#000 4px solid}` Thanks, Bryan Share this post Link to post Share on other sites
manenberg 0 Report post Posted January 4, 2011 Hey Bryan, Thanks, but it put the border all the way to the edge of my screen, do I need to specify the distance from each side to get it where I want. Also it only went around the sides and bottom but not the top. Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 4, 2011 We can do this: ` body{ border:#000 4px solid; margin:10px} ` Thanks, Bryan Share this post Link to post Share on other sites
manenberg 0 Report post Posted January 4, 2011 Hey Bryan, It is still not moving the border to where the white starts and it is not going across the top. I have done it in red and left it live on the site so you can see. Let me know hat you think. www.marcsloans.com Share this post Link to post Share on other sites
manenberg 0 Report post Posted January 4, 2011 Bryan, I got the sides to the right area now, but the bottom is to low and there is no line at the top. Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 4, 2011 it's a fixed width site so your selector should be `body, body.fixed_width {}` Share this post Link to post Share on other sites