Hi, i am supposed to make a blog-like site, and then i add the "cms-repeat" class to the div that holdts a single post. As simple as this:
<div id="post" class="cms-repeat">
Headline
blablabla bla, right? you get it :)
</div>
here is the css for the div:
#post {
min-height: 30px;
width: 686px;
height: auto;
padding-top: 7px;
padding-left: 7px;
padding-bottom: 7px;
padding-right: 7px;
background-color: #3d3d3d;
margin-top: 15px;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 0.8em;
line-height: 1.3em;
color: #ffffff;
}
Everything works fine, but when i press the green "+" to duplicate its just the text that gets duplicated, so the css-code stays behind. :(
Help?!