Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I installed the adc theme into Drupal but it really doesn't work with Mozilla 1.3 under Linux. Forms are displayed all over the place, often overlapping other pages. Also, the boxes overlap so the Main Menu box (I created) overlaps the edge of the centre box.
If anyone involved with creating this theme is reading this, could you test your theme with Mozilla? I think it has great potential.
There is a bug in tableless.theme:
In "create a story" some forms with Disable/Enable
checkers are not viewed (in Mozilla).
Those forms are named : Story status / set public / promote to.../static on... / revision...
I have developed a css based tab menu where the currently viewed page is highlighted, this is done by giving the body id a unique id relevant to the content. You can then in the stylesheet use:
Therefore when the body id is set the same as the button id, the button is highlighted! Anyway the problem is generating the body id. I'm going to add a variable node_id which can be added to static/ menu nodes. It's getting it into the theme environment that baffles me.
If anyone can offer some assitance I would greatly appreciate it.
Does anyone else have trouble getting enable_taxonomy_link to work in Polder? I'm getting an error about bad arguments to links(), which appears to originate with a call to polder_get_taxonomy in which $term->name and $icon_name are not defined. But I'm not sure whether this is caused by bug or if there's just some admin setting that needs to be turned on. Any ideas?
Some people may like to know how to print the site_mission (as set in the site settings) to the front page of the theme. This will give you a message on the index page (like on drupal.org) that you can edit just by editing the site mission.
Here is the code:
<?php
//if we are looking at the index.php page with no QUERY_STRING then print the site_mission
if(substr($_SERVER["PHP_SELF"], strrpos($_SERVER["PHP_SELF"], "/") + 1)=="index.php" && !$_SERVER["QUERY_STRING"]) print variable_get("site_mission", "");
?>