This forum is for assistance with theme development.

DC Bug or Can't find right template

Hello. this topic is about does DrupalCommerce really work.

Views template to override field output for "multiple field settings"

I'm needing to build a view output that will work nicely with HTML mail and thus there is a lot of views template overriding going on to strip divs for (ugg) inline style declarations circa 1997. I have a content type with a date field that allows multiple values and have a view displaying those fields inline/as multiple values on the field (views: field: multiple field settings fieldset: "checked-Display all values in the same row: Display Type UL). I cannot for the life of me get rid of the extra divs.

How do I change the home page view

How do I get the content posted in my group to appear at the bottom under the map:
http://local-info.co.za/groups/timberlake-organic-village-wilderness

Create a big menu with image in the header

Hi all, for one of my client I want to recreate an menu like site camperonline.it where every tree are displayed on 2 columns and for some tree there is an image at the bottom. You can see un example here: img585.imageshack.us/img585/8828/schermata042456402alle1.png.

I think that I need to create it via some html/css but how can I link it to the drupal menu system ? How to assign an image to a menu tree ? is there some module that can help me ? DHTML menu ? Nice menu ? I have no problem with module development, but I have no idea about how to start to recreate that menu.

Theming Output Form Module

Hi:

I'm new on drupal and I'm getting crazy with this issue... I hope somebody can help me...

I wrote a module with a hook_menu to register a url:

	$items['user-child'] = array(
		'title' => 'Añadir Bebe',
		'file' => 'includes/bebe.admin.inc',
		'access callback' => 'user_is_logged_in',
		'type' => MENU_CALLBACK,
		'page callback' => 'drupal_get_form',
		'page arguments' => array('bv_child_add_form'),
	);

Function bv_child_add_form is the next one (It builds a form):

  function bv_child_add_form($form, &$form_state, $class = NULL) {
	$form['child_name'] = array(
    '#type' => 'textfield',
    '#title' => t('Nombre Hijo'),
    '#description' => t('El nombre de su hijo'),
    '#required' => TRUE,
  );

  $form['date_select'] = array (
    '#title' => t('Fecha de nacimiento'),
    '#type' => 'date',
    '#description' => t('Fecha de nacimiento'),
    '#default_value' => array(
        'month' => format_date(time(), 'custom', 'n'),
        'day' => format_date(time(), 'custom', 'j'),
        'year' => format_date(time(), 'custom', 'Y'),
    ),
  );

  return $form;
}

This "page" would be shown in public pages (not admin part).

Question is how can I theme this form in this URL (user-child)?

I already have a page--user-child.tpl.php in my theme but variable $form doesn't exists.

Giving certain roles username & comment text a different color

I have been trying to figure out how to make it so that a profile with the roll "developer" will have the username and any text in comments be a different color than the rest to make it stand out more.

I want to do something like what is done on swtor.com but i am using the advanced forum module
http://www.swtor.com/community/showthread.php?p=6177746#edit6177746

how would i go about doing something like that? I am relatively new to Drupal and any help is appreciated.

Pages

Subscribe with RSS Subscribe to RSS - Theme development