This forum is for assistance with theme development.

Making a VERY blan theme - and failing.

I'm basically trying to create a blog-type area of my plain ole HTML website that I'll use to update my family on stuff. I have a logo and graphical menu now, and want to add some of these rounded two-toned squares for the info I update. I could use some advice on how this would work. I've looked around in the handbooks, forums and Google, but I don't know the terminology. Someone please point me in the right direction, my brain is mush.

Forum Theme

I'm interested in making a theme just for the drupal forum. Is this possible, and how can I integrate it with a current theme?

Theming webforms - a how-to using two methods

I wrote this as I felt that the instructions for theming webforms was a little vague and confusing. It might just have been me, but maybe this will help someone else - I can't be the only confused person out there....can I? :) So here goes....

We can use theming to add CSS id's and classes to webforms. There are two methods available, each have their own advantages.

Method 1

Pros:
can create new fieldsets easily without re-doing the webform
can add any html code you before and after the fieldsets
Cons:
two files to edit

Add the following code to your template.php file to redirect processing to your own template file:

//change the number here '123' to the id number of your webform
function phptemplate_webform_form_123 ($form) {
  return _phptemplate_callback('webform_form_123', array('form' => $form));
}

Then create the file you mentioned in the callback statement above. In this case its called webform_form_123.tpl.php. Now you can create fieldsets and add your own CSS id's or classes to them, using the prefix and suffix attributes to add a new div (you can put anything you want here):

<?php
$form['submitted']['fluentin'] = array(
'#type' => 'fieldset',
'#prefix' => '

',
'#suffix' => '

',
'#weight' => -1,

I'm Panicing - What's happened to my collapsible admin menus

I'm really hoping someone can tell me where I've gone wrong.

I've been spending on my drupal theme and somewhere along the way, the collapsible menus in the Admin section have stopped working - e.g. the 'Input Format', 'File Attachements'... options in 'Create Content' no longer work. If I switch over to bluemarine theme, they work again, but what have I done to make them not work in my theme? I have no idea when this could have happened and to start over is not an option.

Adding panel creates warning

Hello,

Adding a panel with the panels module generates the following error:

user warning: Table 'zijdebloem.taxonomy_block' doesn't exist query: SELECT * FROM taxonomy_block in
/var/www/zijdebloem/includes/database.mysql.inc on line 120.

though I have all the taxonomy modules installed and enabled, including the taxonomy_block module.

Is there a module that I am still missing?

Thanks for your help,

Theme graphics

I am new to drupal and I am using the theme generator for my themes as I am not a programmer.

It works fine and I have a working non-graphic theme. I have not used the graphics as they do not fit my colour scheme.

What programs do people use to create the graphics?

Creating the site is a bit of a hobby for a club so I am not looking to buy any expensive software.

I am only looking to create simple borders.

Pages

Subscribe with RSS Subscribe to RSS - Theme development