refertech - Do you mean something like a strip across the top of the news that states which forum the news is coming from?
Lacrosse Boy - As refertech said, all you need to do is edit the index template. It was designed to be very customizable and moving the "boxes" is as easy as moving a small variable for most of them. It doesn't really require any knowledge of PHP, just HTML.
Yuber - About the best thing I can tell you is to find a tutorial on HTML that could explain it. There are several different ways it could be done with background images, regular images, and tables. Other than that I can tell you it just mostly requires using tables to get different images lined up together to appear as one... Hopefully that will at least help a little.
arracing - You would just need to change your poll query to something like this:
PHP Code:
$pollinfo=$DB_site->query_first("SELECT thread.pollid, thread.open, thread.threadid, thread.replycount, poll.pollid,
poll.question, poll.dateline, poll.options, poll.votes, poll.active, poll.numberoptions, poll.timeout, poll.multiple, poll.voters
FROM thread LEFT JOIN poll ON (thread.pollid=poll.pollid) WHERE thread.forumid=$pollsforum AND thread.pollid!='0' AND thread.open='1'
AND thread.open<>10 AND poll.active='1' ORDER BY RAND()");
Then just enter the id number of your polls forum in the mYvBindex options.