Page 1 of 1

[Solved]News Module - Layout

Posted: Wed Jul 16, 2008 4:15 pm
by libralion
Hi everybody,
I have installed the News module and it works great. But I do have difficulties in adjusting the layout.
In the detailpage I get a large date and Category etc. Where can I change that layout and how?
This is my testsite:
http://www.jomedio.nl/cmsmadesimple/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=4&cntnt01returnid=15

Re: News Module - Layout

Posted: Wed Jul 16, 2008 7:45 pm
by libralion
Ok I got most of the layout changed in the news stylesheet and article template. Only the color of the dates is still black and I can't find where I can edit that.

Re: News Module - Layout

Posted: Wed Jul 16, 2008 8:05 pm
by Nullig
Change:

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  font-color:#666666;
  }

to:

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  color:#666666;
  }

Nullig

Re: News Module - Layout

Posted: Wed Jul 16, 2008 8:14 pm
by libralion
Thanks Nullig! That is it. :D
One thing missing and that is the color from the page where the news is diplayed. That still is black. Where do I change that?
http://www.jomedio.nl/cmsmadesimple/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=4&cntnt01returnid=15

Re: News Module - Layout

Posted: Wed Jul 16, 2008 8:17 pm
by Nullig
The color of what?

Nullig

Re: News Module - Layout

Posted: Wed Jul 16, 2008 8:28 pm
by libralion
Nullig wrote: The color of what?

Nullig
The color of the text: "Winkelwagentjes in sloot gedropt"
http://www.jomedio.nl/cmsmadesimple/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=4&cntnt01returnid=15

Re: News Module - Layout

Posted: Wed Jul 16, 2008 8:38 pm
by Nullig
Change:

/* to add specific style to the below divs, uncomment them. */

/* < remove this
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/  < remove this

then change:

#NewsPostDetailTitle {}

to

#NewsPostDetailTitle {
  color: #666666; < or whatever color you want
}

Nullig

Re: News Module - Layout

Posted: Wed Jul 16, 2008 9:49 pm
by libralion
Thanks very much! :D