Page 1 of 1

Forum plugin, letters are too big!

Posted: Wed May 30, 2007 12:34 pm
by holysjit
Hi, I installed the forum plugin, and it looks weird.
http://www.thejokers.nl/weblog/index.ph ... age]=forum
The letters are too big, because I think its connected with style.css, and I want on my frontpage big letters in the title. How can I change to forum?

Re: Forum plugin, letters are too big!

Posted: Wed May 30, 2007 1:25 pm
by garvinhicking
Hi!

You'll need to use different CSS to style the frontpage divs and their hierarchy differently than the forum.

The forum uses span.serendipity_date headers. Make sure those are not set too large.

Maybe you can revert the size if you adress CSS like

Code: Select all

td span.serendipity_date {
font-size: 10px;
}
Regards,
Garvin

Posted: Wed May 30, 2007 2:44 pm
by holysjit
Ok thanks. It works! I edited this two lines:

Code: Select all

<class="serendipity_date" font-size="2">{$pagetitle}
<class="serendipity_title"  background-color="Transparent"><a href="#">{$headline}</a>
Transparent doesn't work. It doesn't delete the background image. Did I edited the wrong line(s)?

[/code]

Posted: Wed May 30, 2007 3:03 pm
by garvinhicking
Hi!
Transparent doesn't work. It doesn't delete the background image. Did I edited the wrong line(s)?
Phew. Transparents only resets the color of an element to the first declaration of a background-color of any of the parent elements of the picked element. You'll need to inspect your stylesheet to find out which is the parent element, and might need to override that. Or set a background-color: white to the element instead of transparent.

Regards,
Garvin