The page is reading the CSS changes I have made to the style sheet except for this one div I just put in. I've checked for missing ";" and other things. I just can't find the problem. I have the visual editor turned off. This div, <div id="left-col-wrap">, should float right and be 200px wide, but it's aligned left and more like 500px wide. Here's the CSS
#left-col-wrap {
width: 200px;
float: right;
border-left: 1px;
}
And below is what Firebug displays:
<div id="main">
<div id="container" class="one-column">
<div id="content" role="main">
<div id="post-8" class="post-8 page type-page status-publish hentry">
<h1 class="entry-title">Protected: News</h1>
<div class="entry-content">
<div id="left-col-wrap">
Thursday January 19thHumanist Hall,
411 28th St., Oakland
6:30 – 9:30 pm. (doors open at 6:30, program start at 7)
</div>
</div>
</div>
<div id="comments">
</div>
</div>
</div>
Oh this is frustrating! Any help is much appreciated.
Bruce