Panels driving me nuts

Hi all in this bottom row I have two regions seen here...

http://i.imgur.com/wkfWj.jpg

as 25px on the left and 406px on the right, so leaving over 500 px empty space on the left.

I want the left region to be about 600px and the right region to be about 300 px

So can anyone please tell me why it won't let me drag / resize to the empty space on the left but only to the right?

Thank you

How can I reuse data from user fields?

I feel like I'm missing something fundamental, or else I have some mistaken assumptions, but I've been searching a lot and can't find any leads on this.

Current node's field in a seperate block

Hi to all.
I'm trying to display a field from any given node in an seperate block in the same page. (eg. display field_myfield of current node in First Sidebar)
My first thinking was to get it done with views but I did't find a way to pass arguments (current node) to a block.
Last few days I tryied it with panels but without luck.
Can someone please point me to the right direction?

How do I enable an administration theme without changing my default theme?

I'd like something to clean up the admin section, but I can't figure out how to set an admin theme specifically for the admin section. Also, is there a way to switch themes without changing the default theme?

How can I make the search function work for non logged on guests?

First I'm new to Drupal so it's quite possible that i have missed something.

My problem is that i want to make the search box available to anyone that visists my site.
As it is now it's only visable to logged on users.

I have tried multiple skins so it doesn't seem to be a skin issue either (using built-in garland)

Adding a topic pager to the forum-topic-list

Hi all,

in updating my theme for Drupal 7, I ned to figure out how to add a forum topic pager.

I have currently added this to my template.php

<?php
function mytheme_preprocess_forum_topic_list(&$variables) {
global $forum_topic_list_header;

// Create the tablesorting header.
$ts = tablesort_init($forum_topic_list_header);
$header = '';
foreach ($forum_topic_list_header as $cell) {
$cell = tablesort_header($cell, $forum_topic_list_header, $ts);
$header .= _theme_table_cell($cell, TRUE);
}
$variables['header'] = $header;

if (!empty($variables['topics'])) {
$row = 0;
foreach ($variables['topics'] as $id => $topic) {
$variables['topics'][$id]->icon = theme('forum_icon', array('new_posts' => $topic->new, 'num_posts' => $topic->comment_count, 'comment_mode' => $topic->comment_mode, 'sticky' => $topic->sticky, 'first_new' => $topic->first_new));
$variables['topics'][$id]->zebra = $row % 2 == 0 ? 'odd' : 'even';
$row++;

if ($variables['tid'] != $topic->forum_tid) {
$variables['topics'][$id]->message = l(t('This topic has been moved'), "node/$topic->nid");
}
$variables['topics'][$id]->pager = '';

$comments_per_page = variable_get('comment_default_per_page_' . $topic->type, 30);

if ($topic->comment_count > $comments_per_page) {

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x