I am using this theme, however the main content region is not upto my expectation.
I want to add some lines between each content, I used firebug and found that style.css needs to be edited, after modifying the line I did not see any changes, please help with this.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Kisugi Ai’s picture

FileSize
174.01 KB

do you mean like a teaser separations like this ond the screen?

Sms2luv’s picture

Absolutely correct, you got it what I was trying to say.
I also want all tags to be displayed inline and I have also changed it in content settings.
Please hrlp

Kisugi Ai’s picture

for the first page or front page where displayes the teaser of nodes you can use folow css tags

.node-teaser
{
	border-bottom-color: #ddd;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

an if you want all under the node then you need the node.tpl.php from the modules node to copy to the templates folder in tapestry and change to

<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>

  <?php print $user_picture; ?>

  <?php print render($title_prefix); ?>
  <?php if (!$page): ?>
    <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
  <?php endif; ?>
  <?php print render($title_suffix); ?>


  <div class="content"<?php print $content_attributes; ?>>
    <?php
      // We hide the comments and links now so that we can render them later.
      hide($content['comments']);
      hide($content['links']);
      print render($content);
    ?>
  </div>

  <?php if ($display_submitted): ?>
    <div class="submitted">
      <?php print $submitted; ?>
    </div>
  <?php endif; ?>

  <?php print render($content['links']); ?>

  <?php print render($content['comments']); ?>

</div>

maybe you have the add follow to style.css to .submitted section

.submitted {
  display: inline;
}
Sms2luv’s picture

for the first page or front page where displayes the teaser of nodes you can use folow css tags

.node-teaser
{
	border-bottom-color: #ddd;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

which file do i need to edit for the front page.

Kisugi Ai’s picture

your own or style.css

Sms2luv’s picture

How to get the tags inline

Kisugi Ai’s picture

何 wich tags you want inline? you can put tihs at the end of the file

Sms2luv’s picture

I am talking about taxonomy tags displayed in teasers

Sms2luv’s picture

did not work

Sms2luv’s picture

i want to leave a little blank space after the bottom line, i tried to use margin-bottom5 px did not work, please help

Kisugi Ai’s picture

if you use margin then margin-bottom:5px;
you can try padding-bottom:5px;
but 5px is not much
an the taxonomy inline ia haven't looked for

Kisugi Ai’s picture

mabe you have set your content types from above to inline
taxo inline

Kisugi Ai’s picture

Status: Needs work » Closed (fixed)