Topic: Changing Font of Recent Posts on Main Page

Hey, does anyone know how to change the font of the most recent posts on the main page.  It's just in plain old Times New Roman...  anyone?

Thanks!

2

Re: Changing Font of Recent Posts on Main Page

The recent posts on your main page will just be styled according to your main pages styles just like any other content. It's nothing to do with PunBB.

Re: Changing Font of Recent Posts on Main Page

Thanks a lot!

Re: Changing Font of Recent Posts on Main Page

I know how to set the default font colours etc in dreamweaver, how do you go about setting the actual default font?

5 (edited by Paul 2005-04-05 19:49)

Re: Changing Font of Recent Posts on Main Page

Moved to Integration forum by me.

As for Dreamweaver, no idea, used it twice then uninstalled it in disgust.

Using CSS you set the default font on the <body> tag using font-family like so
BODY {FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif}

If you are using inline styles rather than stylesheets then
<body style="font-family: Verdana, Arial, Helvetica, sans-serif">

Re: Changing Font of Recent Posts on Main Page

Thanks, that worked... do you know how to change the default size aswell?

7

Re: Changing Font of Recent Posts on Main Page

BODY {font-size: whatever}