If have a logo that contains the company name and there is no need to show the site name. To explain what is happening, here is the modified code from page.tpl.php from the bluemarine theme; the h1 has been taken out:
I have an extra page of user detail thanks to the profile module. I would like to theme it, but I can't identify where an if this is possible. I've found plenty about theming the view page ?q=user/1/view, but nothing about theming an edit page like ?q=user/1/edit/blah. Scouring the code I come up short.
I would like to have my drupal 4.6 site's frontpage contain only login box and
info on what the site is about, like on yahoo mail's (http://mail.yahoo.com/)
I'm building a theme to asynchronously fetch drupal content using XMLHttpRequest and friends. My theory is that by doing it at theme-level I can degrade gracefully. I have code that can filter a page by element and id to get the stuff i want to show. However, I have yet to find a way to have XMLHttpRequest.getResponseHeader() return anything other than text/html. I've tried things such as
- calling drupal_set_header on line 1 of my page template (drupal_set_header("Content-Type: application/xhtml+xml; charset=utf-8"); )