Add HTML to a block

Just started using 7.2, so far so good, but I'm stuck on one issue. I don't like any of the addit and related modules - specifically how they display the buttons. I'd like to add my own via HTML. How can I create a block that contains my Facebook, Twitter, etc, HTML code to view the buttons? Or how can I create a node that contains Custom HTML. I couldn't find a module that would do this.

User labels for content (similar to GMail and GDocs)

I'd like users to be able to group/tag/label content using their own custom private labels.
This would duplicate the kind of labeling in GMail and Google Docs.
Can the taxonomy system be adapted for this?
Is there a better way?
I searched the site and didn't come up with anything.
Thanks

Problem creating custom elements for forms

I am having an issue with implementing a new custom element in my forms.
The element is to be a 'time' element that allows the user to input an hour, minute and am/pm from selection lists.
Most of my code comes from 'form_example_elements.inc' .What I have done so far is
In the .module file:
function gigmap_elements() {
return array('time' => array(
'#input' => TRUE,

)

);
}

function form_gigmap_element_info() {
require_once('form_gigmap_elements.inc');
return _form_gigmap_element_info();
}

function form_gigmap_theme($existing, $type, $theme, $path) {
require_once('form_gigmap_elements.inc');
return _form_gigmap_element_theme($existing, $type, $theme, $path);
}

and in the 'form_gigmap_elements.inc':

function _form_gigmap_element_info() {
$types['form_gigmap_time'] = array(

'#input' => TRUE,

'#process' => array('form_gigmap_time_process'),

'#element_validate' => array('form_gigmap_time_validate'),
'#autocomplete_path' => FALSE,
'#theme_wrappers' => array('form_gigmap_inline_form_element'),
);
return $types;
}

function form_gigmap_time_process($element, &$form_state, $complete_form) {
$i=0;
$hours = array(0 => '--'. t('Select') .'--');
while ($i < 12) {
$hours[$i] = $i;
$i++;
}
$i=0;
$minutes = array(0 => '--'. t('Select') .'--');
while ($i < 60) {

Positioning "read more" link and facebook Like button.

So I'm finishing up my first Drupal website and geesh some things are just stupid!
http://no-illusions.nl/re-creatie_v2/nieuws

Anyway, on the page above you can see a teaserpage for the news items but as you can see the "read more" link and the "Like" button from facebook are totally out of place. I just want them to be in the teaser-node so I can style them! But I can't find any options to do so.

Any help would be great!

update.php hangs - Firefox 5.0 Glitch

A heads up if you just updated to Firefox 5.0 in the last few days and can't get your Drupal site to update...

I searched the site and found numerous topics about update.php hanging or giving an error message - none of the related solutions or issues seem to help.
problem:

D7.2
updated to Views 7.x-3.0-rc1

Run update.php
it gives me:

Adding a Yahoo javascript calendar to drupal form

I found a far easier solution as the Date module appears to do everything I need. Being new to Drupal I didn't realize just how many modules are available and just how flexible they are.I am quite amazed really!

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x