This forum is for assistance with theme development.

Suckerfish vertical dropdown won't work Win/IE6

Drupal 5.1
php4

a simple phptemplate, all-css theme

i've installed the Suckerfish javascript to page.tpl.php

Tiny Mce problem with amadou theme

I'm trying to customise amadou theme of drupal. It is not working properly. All the content of text box are become center align and some portion of text is not apearing properly also small portion of right side is overlapped. This image will clear what am I talking.
http://manageserver.info/drupal6/files/tinymce-problem.png
------
Sharique

Picture in menu

I'd like to know how to put a little picture before every line of the menu.

Some block js tab help

Ok well I'm posting here because my chances of a reply are a lot greater than on the jstools page. What I have below works. Except that for $module ='user'; I need this tab to have a delta of '1' so it will display the navigation once they are logged in, how do I go about achieving this?


<?php
$module = 'user';
$delta = '0';
$block = (object) module_invoke($module, 'block', 'view', $delta);
$block->module = $module;
$block->delta = $delta;
$tab_A = theme('block', $block);

$module = 'userpoints';
$delta = '1';
$block = (object) module_invoke($module, 'block', 'view', $delta);
$block->module = $module;
$block->delta = $delta;
$tab_B = theme('block', $block);

$module = 'user';
$delta = '2';
$block = (object) module_invoke($module, 'block', 'view', $delta);
$block->module = $module;
$block->delta = $delta;
$tab_C = theme('block', $block);

$form = array();

$form['community'] = array(
'#type' => 'tabset',
);
$form['community']['tab1'] = array(
'#type' => 'tabpage',
'#title' => t('Login'),
'#content' => $tab_A,
);
$form['community']['tab2'] = array(
'#type' => 'tabpage',
'#title' => t('Top Users'),
'#content' => $tab_B,
);
$form['community']['tab3'] = array(
'#type' => 'tabpage',
'#title' => t('New Users'),
'#content' => $tab_C,
);

How to apply same page template throughout forum?

Hi,

I'm setting up a site with a forum, a shop and some simple service pages. I'm using Drupal 5.1 and PHPTemplate. I have created the following page templates:

page-forum.tpl.php - for theming forum pages
page-shop.tpl.php - for theming shop pages
page.tpl.php - for theming all other pages

However, this works only at the "entry level" of the forum but not in forum topics:

WordPress logo showing in my drupal installation in the browser address window

It appears that WordPress which I have installed in another directory is adding a logo to the browser window on my site. How do I fix that?

Leisa

Pages

Subscribe with RSS Subscribe to RSS - Theme development