Forum plugin, letters are too big!

Creating and modifying plugins.
Post Reply
holysjit
Regular
Posts: 131
Joined: Sun Apr 08, 2007 9:47 am

Forum plugin, letters are too big!

Post 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?
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Forum plugin, letters are too big!

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
holysjit
Regular
Posts: 131
Joined: Sun Apr 08, 2007 9:47 am

Post 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]
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply