Hi You can google "CSS Overriding"
http://www.google.co.in/search?q=css+overriding regards Taha On Dec 5, 2011, at 6:32 AM, George Ludwig wrote: > Thanks, that did the trick! > > I'm not an expert on CSS...I'm curious by what mechanism were those > attributes protected? > > On Sun, Dec 4, 2011 at 4:48 PM, Dusko Jovanovski <dusk...@gmail.com> wrote: > >> Try replacing your entry in your layout.css with this snippet: >> >> DIV.t-beaneditor { >> border: 2px outset blue !important; >> } >> >> On Mon, Dec 5, 2011 at 12:53 AM, George Ludwig <georgelud...@gmail.com >>> wrote: >> >>> I'm want to change the border color of all the beaneditors to blue, so I >>> added this to my layout.css: >>> >>> DIV.t-beaneditor { >>> background: none repeat scroll 0 0 #FFFFCC; >>> border: 2px outset blue; >>> display: block; >>> font-family: "Trebuchet MS",Arial,sans-serif; >>> padding: 2px; >>> } >>> >>> However, it remains brown. When I inspect the page using FireBug, I see >>> this from default.css line 159: >>> DIV.t-beaneditor { >>> background: none repeat scroll 0 0 #FFFFCC; >>> border: 2px outset brown; >>> display: block; >>> font-family: "Trebuchet MS",Arial,sans-serif; >>> padding: 2px; >>> } >>> >>> Just after that is my entry from layout.css, however all the entries are >>> lined out. >>> >>> Is there something obvious that I'm missing? >>> >>> -George >>> >>