A D
Since you have not posted a link to your site, it's not possible to see what you did wrong. If the code you posted here is the actual code, it should work, despite your scattershot approach to coding CSS. All you really need is this:
.journal-read-more-tag { display: none; }.journal-entry-wrapper { width:350px; float:left; }
Maybe you have coded something else on the page that's preventing this code from taking effect? If you want someone here to look at it, post a link.
--Chris
We are using the CSS editor in the "custom css" option.
But none of the styles we make are getting applied.
I want to hide the read more tag, and make the journal entries a small width that is floated left, but these styles are not applying.
How do I resolve?
IE:
[code]
journal-read-more-tag {display:none; visibility:hidden;}
#journal-read-more-tag,.journal-read-more-tag { display:none;
visibility:hidden;}
.journal-entry-wrapper
{
width:350px;
float:left;
}
.journal-entry-text
{
width:350px;
float:left;
}
.list-journal-entry-wrapper{border:1px solid red;}
[/code]