How to
Information on how to do something... anything.
Some IE6 fixes did not require browser detection
Wrong (as far as IE6 is concerned)
a#emailalerts_button {
display: block;
background: url('images/alerts.gif') 0% 0px;
padding: 135px 0px 0px 130px;
vertical-align: bottom;
}
Right (for everything as far as we can test)
a#emailalerts_button {
display: block;
background: url('images/alerts.gif') 0% 0px;
padding: 0;
width: 135px;
height: 130px;
vertical-align: bottom;
}
noticing how hard it is to edit a node in a panel?
dan hak 11:03
oh yea, your old thing didnt show that
03:30
yea
03:32
it sucks
03:45
you have to go tothe panel
03:51
figure out what it is
03:54
then find the node
benjamin melançon 11:09
well no more!
dan hak 11:09
i assumed thats what you were getting at
In our node.tpl.php, just below:
Oh, it's that easy...
Hello Marco,
Could you give your procedure for proxying through another server? Once we have it hooked up with our server we should be able to do that.
Thanks,
in this way.
1) (necessary if server restricts by IP adddress) send ip of server1 to server staff
2) from your machine's shell to server 1
ssh ben@server1
3) from server1's shell to destination server
ssh ben@destinationserver.example.com
Very useful thread, great helpful people responding to it:
How to theme view module's "table view"?
http://drupal.org/node/87367
Thanks to a tip from
<?php
/**
* Function to handle a sample field.
*/
function phptemplate_views_handle_field_participants_users_name($fields, $field, $data) {
$info = $fields[$field['fullname']];
how does Drupal.org do its PHP input filter?
the one that if you put PHP tags around it it will make nicely formatted and colored code
(may have posted this question on agaric)
Thanks Lullabot!
http://www.lullabot.com/articles/drupal_input_formats_and_filters
Code Filter Renders syntax-highlighted PHP code. This module is used on Drupal.org.
You cannot call drupal_add_css, drupal_add_js, or drupal_set_html_head in any page.tpl.php files themselves. This makes sense, as the variables used to display the page have to have been loaded already for the page to start displaying.
Solution for RSS, CCK and Views...
http://drupal.org/node/87430
I think this is basically what the Contemplate module can do? But can it be used to theme RSS only, and leave regular theming to node-type.tpl.php files?
Resolution