Topic: Image?

I was wondering how to make it so we have an image on the top instead of text for the title?
--

also off topic but is there any thing that lets you show the news of the site on the front page of your main site WITHOUT a portal? :S

Re: Image?

l3lueMage wrote:

I was wondering how to make it so we have an image on the top instead of text for the title?

http://wiki.punres.org/Add_a_logo_to_the_header_via_css

l3lueMage wrote:

also off topic but is there any thing that lets you show the news of the site on the front page of your main site WITHOUT a portal? :S

Using extern.php, check the source, there are many examples in it.

Re: Image?

http://wiki.punres.org/Add_a_logo_to_the_header_via_css
http://punbb.org/download/plugins/AP_News_Generator.zip

Re: Image?

1st: http://wiki.punres.org/Add_a_logo_to_the_header_via_css

2nd: have a look at extern.php in your forum's root.

~James
FluxBB - Less is more

Re: Image?

LMAO!

sometimes this forum is TOO helpful. big_smile

~James
FluxBB - Less is more

6 (edited by l3lueMage 2007-06-08 22:22)

Re: Image?

lol, the title image thing didn't work :S I mean it did but the forum shows the text over the image still D:

And wheres the directions to the AP news XD

Re: Image?

The directions are in the download itself, and the title can be hidden by adding
display: none
to the .pun H1 span bit

Re: Image?

I just wanted to make sure I'm doing the news thing correctly because it isn't showing up :S no errors either..

Re: Image?

How are you integrating the output?

Re: Image?

I was using an include the AP_News_generator.php?

11

Re: Image?

l3lueMage wrote:

I was using an include the AP_News_generator.php?

That's not how it works. It's a plugin.

Re: Image?

Well I'm new to punbb so...how do I use it? tongue

Re: Image?

This should help http://punbb.org/docs/video_tutorials/v … lugin.html

Re: Image?

Aah it worked thanks smile Last thing lol! Is there something similar but instead it just gets the latest topics on the forum? D:

Re: Image?

extern.php as I said before. Reads its source around line 62, there's lot of examples.

Re: Image?

Open the font page of your site in a plain text editor and use one of the following examples from Punbb's extern.php

    Show the 15 most recently active topics from all forums:
    include('http://yourdomain.com/yourforumsrootfolder/extern.php?action=active');

    Show the 10 newest topics from forums with ID 5, 6 and 7:
    include('http://host.com/forums/extern.php?action=new&show=10&fid=5,6,7');

    Show users online:
    include('http://host.com/forums/extern.php?action=online');

    Show users online with full listing of users:
    include('http://host.com/forums/extern.php?action=online_full');

    Show board statistics:
    include('http://host.com/forums/extern.php?action=stats');

If the front page of your site is called "index.html" you must rename is "index.php" for this to work.