Drupal is up and running but how do I ...?

contact directory module: I have it installed, but how do enter a contact? (newbie)

I think I have it installed. Everything shows up in mysql, there is an "administrator > contact directory" entry in the Navigation block. When I go to "administrator > contact directory" I see the following tabs:

Catagories
- List Catagories
- Add Catagories

Directory
- List Contacts
- Search Contact

I can add catagories all day long I suppose. And I can list those catagories. But that's about it. I can find no way to enter a contact.

Passing URL Variables - can someone have a quick look at this!

My page here is working fine (outside of Drupal):
http://sanluisrealtor.studiocreek.com/search2.php?City=cayucos

When I put the code into drupal however I cannot get it to work... any ideas why? Here is the full code i'm using:

$hostname_mls_connection = "localhost";
$database_mls_connection = "...";
$username_mls_connection = "...";
$password_mls_connection = "...";
$mls_connection = mysql_pconnect($hostname_mls_connection, $username_mls_connection, $password_mls_connection) or die(mysql_error());
$colname_Recordset1 = "1";
if (isset($HTTP_GET_VARS['City'])) {
  $colname_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['City'] : addslashes($HTTP_GET_VARS['City']);
}
mysql_select_db($database_mls_connection, $mls_connection);
$query_Recordset1 = sprintf("SELECT * FROM res WHERE City = '%s'", $colname_Recordset1);
$Recordset1 = mysql_query($query_Recordset1, $mls_connection) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);

do {

echo $row_Recordset1['ML_Number'];

} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));

mysql_free_result($Recordset1);

What am I missing here? Any help would be greatly appreciated!

Tweeking expand/collapse menu - newbie

I am beginning to configure my drupal site, and am wondering if there is any way to "tweek" the expand/collapse menu in the ADC theme? Basically what I would like to do is have one box that says "Articles". Within this box you can select different categories - ie. "Sleep & Colic", "Discipline", "Health Information", etc... Then when you click on one of the categories (Sleep & Colic, for example) I would like different article titles to appear.

Question to the chameleon theme wizards

Hello,

I just wish to get the left-block and the right-block to be 120 pixels width in the chameleon theme.

Is there a kind helper around who could tell me in which file I can set up: left-block, right-block: width=120px ?

Many thanks for your help.

box_grey: how do I space images?

I the default bluemarine theme, I created a block, put a table in that block, and put some images in the table. The images were nicely spaced apart.

But, with box_grey, the images are tightly crammed together, and I can not anything to space them apart. Cellspacing simply will not work.

The images are just some cert logos. Here is the code:

box_grey: how do I configure sidebar blocks like on drupal.org?

It seems like the heading and the content is handled differently on drupal.org.

The background color of the the header goes all the way to the edge of the block - no padding, I guess. But, the content of the block has a reasonable indentation, as if it does have padding. I don't know how to add padding to the content, without adding padding to the header.

I suppose I could do it with tables and cell-padding, but that seems sort of ineligant, and sort of defeats the purpose of CSS.

Pages

Subscribe with RSS Subscribe to RSS - Post installation