Tekforums

Chat => Entertainment & Technology => Topic started by: Vini on April 11, 2006, 16:14:48 PM

Title: Wrap my phpbb board goddamnyou ;)
Post by: Vini on April 11, 2006, 16:14:48 PM
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 (http://www.ibeats.co.uk/?page_id=24))

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
*/
?>








Title: Wrap my phpbb board goddamnyou ;)
Post by: bear on April 11, 2006, 17:16:27 PM
pimping (http://img116.exs.cx/img116/6469/g5cgrin.gif)
Title: Re:Wrap my phpbb board goddamnyou ;)
Post by: Vini on April 12, 2006, 08:45:06 AM
stop pimping goddamnyou and
me up ;)
Title: Re:Wrap my phpbb board goddamnyou ;)
Post by: Vini on April 20, 2006, 12:22:52 PM
Im wanting to achieve the below:

(http://www.vini.co.uk/uploads/forumpress.jpg)

/*
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?
Title: Re:Wrap my phpbb board goddamnyou ;)
Post by: skidzilla on April 22, 2006, 02:26:42 AM
You could have a play with the <canvas> tag (http://www.whatwg.org/specs/web-apps/current-work/#canvas), 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);

};