I figured I could just add the CSS from .well to .entry-title - is there a
better way to do this?
.well {
background-color: #f5f5f5;
margin-bottom: 20px;
padding: 19px;
min-height: 20px;
border: 1px solid #eee;
border: 1px solid rgba(0, 0, 0, 0.05);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
On Tuesday, December 18, 2012 2:37:40 AM UTC-5, sharonq wrote:
>
> I didn't explain that very well - or perhaps I am not understanding you.
>
> I want the page title to be in a well. It already has a class:
>
> /* Titles */
> .entry-title {
> margin: 0 0 10px 0;
> }
>
> Is there anything to add here that says "put me in a well" :)
>
>
>