This forum is for assistance with theme development.

Music community site/theme

This is essentialy a cross-post from where I happily host my site. Hopefully I'm posting in the right section, 'cuz I'm essentially looking for a template/theme that I can use for my own purposes, as well as anybody who'd find some use in this type of site.

I recently came across the newly designed site for Little Radio. It surprised/impressed me
for several reasons:

  • It's a great looking site
  • Is pretty rich with multimedia (photos, podcasts, streaming radio, playlists, etc.)
  • Most of the content seems to be seamlessly aggregated from outside sources
  • The kicker is that it's done on wordpress!!

Another fine site (obviously built by the folks behind this) was built on Django.

Upon exploring these sites, it raised a few questions:

  • Can Drupal do this? Ok, that's a stupid question.
  • What are some examples of similar drupal sites?
  • Is there some sort of blueprint/process? Themes, modules, and all that good stuff?
  • If there really isn't something quite similar, how could we set up an open-source/Drupal version of this?

slogan not appearing in custom theme

My slogan is not appearing in my custom theme. When I view the source, the div that contains it is totally empty, here's my code up to the slogan:

Mollio theme paging issue

I am testing the Mollio theme, it really looks beautiful. However, there's a small bug or maybe i missed something here, but when paging thru a list of users, it only shows one page: It says, 1 of 1, and this page only shows about 15 users, i actually have more than 200 users. The paging is not working properly, it should show more links to the rest of the users, like: 1 | 2 | 3 next last.

This problem is only happens when using the Mollio theme.

Is anyone using this theme, did you have any issues similar to mine?

Thanks.

A different ID for each input checkbox and radio

Hi!
I'm using a javascript to replace the default radio buttons and checkboxes with custom images.

It's this one :

http://www.codeproject.com/jscript/wdxinputreplacer.asp#xx1276237xx

It's really nice but the problem is that all inputs must be given unique IDs otherwise the script will not be able to identify which input has been checked/unchecked.

Well, my question is : How can each input have a unique ID ?

Do you have any idea ? :)

Title field in Hook_form?

Hello everyone,

I am working with the quotes.module and am having some difficulty with hook_form. I am trying to remove the Title: field from the submission form, as a quote really does not need a title. It's minor, but I can not for the life of me figure it out and was hoping someone might be able to help. The hook_form code is pasted below. Thanks in advance!

/**
* Implementation of hook_form().
*/
function quotes_form(&$io_node) {
$the_output = '';

if (function_exists('taxonomy_node_form')) {
$the_output .= implode('', taxonomy_node_form('quotes', $io_node));
}

if (user_access('promote quotes to block')) {
$the_output .= form_checkbox(t('Display in quote blocks'), 'quotes_promote', 1, (isset($io_node->quotes_promote) ?

$io_node->quotes_promote : 1));
}

switch (arg(3)) {
case 'import':
$the_output .= form_radios(t('Format'), 'quotes_format', ($io_node->quotes_format ? $io_node->quotes_format : 'text'),

array('text' => t('Tab-separated text'), 'fortune' => t('Fortune file')), NULL, TRUE);
$the_output .= form_textarea(t('Quotes'), 'body', $io_node->body, 60, 20, NULL, NULL, TRUE);
break;

case 'upgrade':
if (!$io_node->body) {
$io_node->body = '';
$the_result = db_query_range('SELECT q.quote, q.author FROM {quotes_quotes} q ORDER BY q.qid',

variable_get('quotes_upgrade_start', 0), 1000);

simple css question?

i can't seem to figure this out - too many hours staring at the screen i guess (and hope?).

I have just put otgether a new theme and launched it for beta testing, though i cannot get the sidebar to extend the full length of the page... I have it set at height: 100%

http://veganarky.net

Can anyone advise how to do this, what i have done wrong, missing code, etc?

Pages

Subscribe with RSS Subscribe to RSS - Theme development