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?
Forum plugin, letters are too big!
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Forum plugin, letters are too big!
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
Regards,
Garvin
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;
}
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/
# 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/
Ok thanks. It works! I edited this two lines:
Transparent doesn't work. It doesn't delete the background image. Did I edited the wrong line(s)?
[/code]
Code: Select all
<class="serendipity_date" font-size="2">{$pagetitle}
<class="serendipity_title" background-color="Transparent"><a href="#">{$headline}</a>
[/code]
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Regards,
Garvin
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.Transparent doesn't work. It doesn't delete the background image. Did I edited the wrong line(s)?
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/
# 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/