News-module questions
News-module questions
I am using the standard news-module comming with cmsms. I know that it is "controlled" by css, and the layout is fitting my design.
But one thing i can't figure out how to solve:
I would like a
or tag between the posts. As it is now, the last part of a post, and the title of the next is in the same line...
What did I forget?
You can see what I am working on here (it's danish)...
http://www.mrbs.dk/cms
But one thing i can't figure out how to solve:
I would like a
or tag between the posts. As it is now, the last part of a post, and the title of the next is in the same line...
What did I forget?
You can see what I am working on here (it's danish)...
http://www.mrbs.dk/cms
News-module questions
Add
to your cms-module-news class. Should fix it right up.
Great looking site!
Code: Select all
display: block;
margin-top: 1em;
Great looking site!
help me out
Ok, please help me out, I just can't find the file to put that inwishy wrote:Addto your cms-module-news class. Should fix it right up.Code: Select all
display: block; margin-top: 1em;
Great looking site!

News-module questions
Here is the CSS I use:
Code: Select all
.cms-module-news {
display: block;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #777;
}
.cms-news-date {
color: #DD0000;
font-weight: bold;
}
.cms-news-title {
color: #006400;
font-weight: bold;
}
.cms-news-content {
color: #000;
font-size: 1.1em;
display: block;
margin-top: 6px;
}
Greg
Re: News-module questions
It seems this css-code doesn't work anymore with cmsversion 0.10 and newsversion 2.0.Greg wrote: Here is the CSS I use:
Code: Select all
.cms-module-news { display: block; margin-bottom: 10px; padding: 10px; border: 1px solid #777; } .cms-news-date { color: #DD0000; font-weight: bold; } .cms-news-title { color: #006400; font-weight: bold; } .cms-news-content { color: #000; font-size: 1.1em; display: block; margin-top: 6px; }
What's the correct way of changing the look of the news right now?