Hello!
How can I put the title more down?And What should I change to the administer menu go more to the right??
I've already looked to css file but I can find the option.

Thank's
Karma

Comments

ktleow’s picture

Hi,

To edit the title's css, look for this code and change:

h1.page-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cecebf;
}

Your second question is referring to the entire sidebar?

karmaxstripes’s picture

Title: Title » #2

Thank's ktleow I've already made my changes.
I also have put the sidebar with the size I want to.

But now apears another question. I have an swf. animation and I want to put it before the title, so it will be allways in loop.
I think I have to change in the page.tpl.php file. But it is not working.

Is it posible to take off the date and author informations to?

sorry for so many questions, but I'm just starting now with drupal.

Thank's
karma

ktleow’s picture

Status: Active » Closed (fixed)

Since you want it before the title and always in a loop, you have to edit the node.tpl.php file.

Refer to the code:

<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> <?php if ($page) { print ' page'; } ?> clear-block">
  <?php if ($submitted): ?>
    <div class="date">
      <div class="month"><?php print format_date($created, 'custom', 'M'); ?></div>
      <div class="day"><?php print format_date($created, 'custom', 'j'); ?></div>
    </div>
  <?php endif; ?>

ADD YOUR SWF HERE

  <div class="content">
    <?php if (!$page): ?>
      <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
    <?php endif; ?>

The date and author information can be disabled for all content type via admin/build/themes/settings page.

Have fun =D