stijnxo+ 1 Report post Posted January 7, 2011 How do i define a border for a image within my page? It works for the whole page if i add this to the .css: .page-content { border:1px solid #000000; padding:2px; padding-bottom:0px; } What do i use for just a image entry??? Kind regards, Stijn Share this post Link to post Share on other sites
catrina 103 Report post Posted January 7, 2011 Paste this into the base.css file in PlatformBase: div.entry_content img {border: 1px solid #000;} You may change the line thickness (1px) and color (#000) according to your wishes. 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
cmunns 16 Report post Posted January 7, 2011 well if that works for the whole page this presumably would work for every image inside that page area ` .page-content img { border:1px solid #000000; padding:2px; padding-bottom:0px; } ` Share this post Link to post Share on other sites