The forum tables run wider than the theme's container div and I cannot seem to harness it back in.
It only happens with the "post new thread" and "reply to thread" screens.
Is anyone familiar with this theme and module that can point in the right direction here.
I've tried to modify the CSS to frame it right but no matter what the forum screen goes off to the left under the sidebar in firefix and pushing the sidebar down below the forum in IE.
would this be considered a theme bug or module bug?
I am just building a new site with Drupal 5. My first ever real try! And I have a few questions. The main one surrounds the news aggregator. Is it possible to only supply the sources. i.e. This list: http://www.cregy.net/aggregator/sources
I know I could simply make a link to it and put that in a block. Is there a more elegant way please?
1) My question is with this module will i be able to have a totally new layout (Differnt banner and everything) using mulidomain?
2) How do you delete a domain you configuired that you do not want anymore?
When i enable this module and add another domain it seems to want to change every link to both domain together example (http:www.allensworld.orghttp://allensworld.org) only when i check force defualt domain in the configuration
Created a new node type, and associated stuff. Works fine.
Want to add multi-part forms to the node, as the node creation success depends on being called in a context. If that context is missing... such as when the user calls it from 'Create content' instead of from my own links that provide the context, I want to prompt the user for the context. I've started to do this by creating a multi part form that checks for the initial context variable. (I pass this in as /node/create/(context number here) in the links I create from other content.
There seems to be two distinct ways to program forms... one that takes in &$node as the input and what is passed to the submit function, and one that takes in $form_id and $form_values. The example listed in the 'how to create multi part forms for 5.x' page seems to be $form_id centric. I'm wondering if the same methods can be applied to the node centric methodology.
Read over much of the forms api and the nodes api looking for clues into how this context is determined. I don't get it. :)
Creating a multipart form as listed using node centric methodology results in the form being submitted when it should I think it should be returning to the form.
I noticed that with the site serach module, you care allowed to echo, from the page.tpl.php, '$search_box' and it will echo a form with a submit button and a text box.
I was wondering how does that work in relation to the search modules' methods? In the search module there is a method called 'search_box($form_id = 'search_theme_form')' and the form items defined in this method are the items that are echoed when you echo '$search_box'.