News:

Tekforums.net - The improved home of Tekforums! :D

Main Menu

Wrap my phpbb board goddamnyou ;)

Started by Vini, April 11, 2006, 16:14:48 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Vini

Hey all, was wondering if there was a way to wrap my board inside my WP.

Ive semi achieved it by using and iframe (see: here)

but was wondering if there was a way to call the phpbb index into the actual page without iframing? mainly to avoid scroll bars.

any ideas?

ps. the code for that page is:

/*
Template Name: Forum
*/
?>









bear


Vini


Vini

Im wanting to achieve the below:



/*
Template Name: Forum
*/
?>


   


<<<< INSERT FORUM INCLUDE?? CODE?? WHAT?? >>>>

   








 

the above, is a blank template for my wordpress theme, is there anything i could include in there to get the forum looking like the picture?

an iframe does the job i want, but iframes are rubbish. i dont want the scroll bars and hassle that they bring.

ive tried an include but all the links and css goes to pot for the forum.

any ideas on a way to do this?

skidzilla

You could have a play with the <canvas> tag, works in Opera 9/Firefox/Gecko based browsers.

interface HTMLCanvasElement : HTMLElement {

  // returns the values of the width and height attributes, or the assumed
  // defaults if the attributes were not specified or invalid
  // sets the relevant content attributes on setting
         attribute long                    width;
         attribute long                    height;

  // returns a data: URI representing the current image as a PNG
  DOMString toDataURL();

  // returns a data: URI representing the current image in the specified format
  DOMString toDataURL(in DOMString type);

  // returns the context with which to paint, see below
  DOMObject getContext(in DOMString contextID);

};