I have encountered an issue with bluebreeze theme, my front page is /node (the default value).
When load the front page with IE6 or IE7, the browser hangs for a long time without responding.
But firefox 2 does not have this problem.
This happens only on the first page, other pages load quickly.
I have tried to switch to the default theme and this issue disappears.
I am trying to move the views-filters into the same div as the search box. I would like to (if possible) change the output of the exposed filter from id=‘views-filters’ to id=‘browse-jobs’.
It is my hope that I will then be able to customize the view and place the div browse-jobs where I want it.
I would greatly appreciate any help in doing this as I have spend several hours trying to work it out.
Hello!
I am new one to this Drupal.I am modifying exiting theme(aurora) to get the some other look and feel.Thing is,i added one more css class (Eg.,messagesone) inside the style.css.But that class is not taking effect inside the page.So i need someone's help in how to include my own css and how to include css class in the style.css and use it so that it will take effect in my page.
On the Administer->Content page, I would like the "Status" select box to default to "not published". In node.module, I see this:
node_filter_form() function which has: '#theme' => 'node_filters' , so I created this in template.php (PHPTemplate)
function newsportal_node_filters(&$form) {
$form['status']['status']['#default_value'] = 'status-0';
}
I'm using panels and views and cck, I'm trying to create blocks in the panels which are static (by static I meant the size of the block doesn't change). I used views to output just node titles per block. With what I'm getting right now, if a block has less node titles then it collapses just to accomodate the fewer node titles. What I want is to make the block sizes similar despite the number of node titles being displayed. How can I do this?