Im trying to reorganise node, i just want to:

- add simple backround box behind node
- change the" submitted by" text to be displayed below the node body text
- to have the "Tags:" field and "Add new comment" to be inline

Can anyone give me a pointer in right direction? I've been looking thru the css file of the theme, but havent had much luck.

Comments

iva.dcc’s picture

Well, got a bit of good news, after trying some more, i've managed to move the submitted by text to be under the node content
and i've found the code regarding the Tags and Add new comment. I've tried various things, but i havent managed to get tags and new comment to be inline.

Can anyone help please? The relevant piece of code is below:

  <?php if (!empty($links) || !empty($terms)) { ?>
    <div class="linkswrap">
      <?php if ($links) { ?><div class="postlinks"><?php print $links?></div><?php }; ?>
      <?php if ($terms) { ?><div class="taxonomy">Category: <?php print $terms?></div><?php } ?>
    </div>
  <?php } ?>

As for the moving the submitted by text below the node content, i've done it by moving this few lines:

   <?php if ($submitted) { ?><div class="submitted"><?php print $submitted?></div><?php }; ?>

moved it under the line:

  <?php print $content?></div>
khanz’s picture

for background you can try adding this in your theme's css, ofcource change the colors as required...

.node {
background-color:paleGoldenRod;
border:1px solid gray;
padding:6px;

------------
Volvo, Video, Velcro. (I came, I saw, I stuck around.)

xqbzzr’s picture

...and for the links you can add

.postlinks,
.taxonomy
{display: inline;}

or if you want the links themselves to be inline:

.postlinks a,
.taxonomy a
{display: inline;}
iva.dcc’s picture

Guys, thank you so much for your help. Both suggestions worked like a charm and i've got exactly what i wanted.

Only question i have remaining if its possible to add a gradient backround to the theme, since its now just solid white.